Skip to content

Commit

Permalink
[EventHubs] checkpointstoretable - skip tests until env vars configur…
Browse files Browse the repository at this point in the history
…ed (Azure#20289)

* skip tests

* skip sample
  • Loading branch information
swathipil authored Aug 16, 2021
1 parent d5ce554 commit 22e5b84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions scripts/devops_tasks/test_run_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@
"iot_hub_connection_string_receive_async.py",
"proxy_async.py"
],
"azure-eventhub-checkpointstoretable":[
"receive_events_using_checkpoint_store.py"
],
"azure-servicebus": [
"mgmt_queue.py",
"mgmt_rule.py",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _update_and_list_checkpoint(storage_connection_str, table_name):


@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
@pytest.mark.liveTest
@pytest.mark.skip("update after adding conn str env var")
def test_claim_ownership_exception(storage_connection_str):
storage_connection_str, table_name = get_live_storage_table_client(
storage_connection_str
Expand All @@ -189,7 +189,7 @@ def test_claim_ownership_exception(storage_connection_str):


@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
@pytest.mark.liveTest
@pytest.mark.skip("update after adding conn str env var")
def test_claim_and_list_ownership(storage_connection_str):
storage_connection_str, table_name = get_live_storage_table_client(
storage_connection_str
Expand All @@ -201,7 +201,7 @@ def test_claim_and_list_ownership(storage_connection_str):


@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
@pytest.mark.liveTest
@pytest.mark.skip("update after adding conn str env var")
def test_update_checkpoint(storage_connection_str):
storage_connection_str, table_name = get_live_storage_table_client(
storage_connection_str
Expand Down

0 comments on commit 22e5b84

Please sign in to comment.