Skip to content

Commit 22e5b84

Browse files
authored
[EventHubs] checkpointstoretable - skip tests until env vars configured (Azure#20289)
* skip tests * skip sample
1 parent d5ce554 commit 22e5b84

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

scripts/devops_tasks/test_run_samples.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@
8989
"iot_hub_connection_string_receive_async.py",
9090
"proxy_async.py"
9191
],
92+
"azure-eventhub-checkpointstoretable":[
93+
"receive_events_using_checkpoint_store.py"
94+
],
9295
"azure-servicebus": [
9396
"mgmt_queue.py",
9497
"mgmt_rule.py",

sdk/eventhub/azure-eventhub-checkpointstoretable/tests/test_storage_table_partition_manager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def _update_and_list_checkpoint(storage_connection_str, table_name):
177177

178178

179179
@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
180-
@pytest.mark.liveTest
180+
@pytest.mark.skip("update after adding conn str env var")
181181
def test_claim_ownership_exception(storage_connection_str):
182182
storage_connection_str, table_name = get_live_storage_table_client(
183183
storage_connection_str
@@ -189,7 +189,7 @@ def test_claim_ownership_exception(storage_connection_str):
189189

190190

191191
@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
192-
@pytest.mark.liveTest
192+
@pytest.mark.skip("update after adding conn str env var")
193193
def test_claim_and_list_ownership(storage_connection_str):
194194
storage_connection_str, table_name = get_live_storage_table_client(
195195
storage_connection_str
@@ -201,7 +201,7 @@ def test_claim_and_list_ownership(storage_connection_str):
201201

202202

203203
@pytest.mark.parametrize("storage_connection_str", STORAGE_CONN_STR)
204-
@pytest.mark.liveTest
204+
@pytest.mark.skip("update after adding conn str env var")
205205
def test_update_checkpoint(storage_connection_str):
206206
storage_connection_str, table_name = get_live_storage_table_client(
207207
storage_connection_str

0 commit comments

Comments
 (0)