Skip to content

Commit f595705

Browse files
skipping test if running against python 2.7 (#16806)
Removed this accidentally on the test refactor
1 parent 9999d28 commit f595705

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sdk/tables/azure-data-tables/tests/test_table_client_cosmos.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ def callback(response):
9393
if self.is_live:
9494
sleep(SLEEP_DELAY)
9595

96+
@pytest.mark.skipif(sys.version_info < (3, 0), reason="requires Python3")
9697
@CosmosPreparer()
9798
def test_user_agent_append(self, tables_cosmos_account_name, tables_primary_cosmos_account_key):
9899
service = self.create_client_from_credential(

0 commit comments

Comments
 (0)