Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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