Skip to content

Commit

Permalink
ci: extend azure timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 authored and rtyler committed Sep 10, 2023
1 parent 30c55d4 commit 69f0694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def azurite_env_vars(monkeypatch, azurite_creds):
monkeypatch.setenv(key, value)


@pytest.fixture()
@pytest.fixture(scope="session")
def azurite_sas_creds(azurite_creds):
endpoint_url = (
f"http://localhost:10000/{azurite_creds['AZURE_STORAGE_ACCOUNT_NAME']}"
Expand Down
8 changes: 4 additions & 4 deletions python/tests/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def test_roundtrip_s3_direct(s3_localstack_creds, sample_data: pa.Table):

@pytest.mark.azure
@pytest.mark.integration
@pytest.mark.timeout(timeout=15, method="thread")
@pytest.mark.timeout(timeout=60, method="thread")
def test_roundtrip_azure_env(azurite_env_vars, sample_data: pa.Table):
table_path = "az://deltars/roundtrip"

Expand All @@ -195,7 +195,7 @@ def test_roundtrip_azure_env(azurite_env_vars, sample_data: pa.Table):

@pytest.mark.azure
@pytest.mark.integration
@pytest.mark.timeout(timeout=15, method="thread")
@pytest.mark.timeout(timeout=60, method="thread")
def test_roundtrip_azure_direct(azurite_creds, sample_data: pa.Table):
table_path = "az://deltars/roundtrip2"

Expand All @@ -217,7 +217,7 @@ def test_roundtrip_azure_direct(azurite_creds, sample_data: pa.Table):

@pytest.mark.azure
@pytest.mark.integration
@pytest.mark.timeout(timeout=15, method="thread")
@pytest.mark.timeout(timeout=60, method="thread")
def test_roundtrip_azure_sas(azurite_sas_creds, sample_data: pa.Table):
table_path = "az://deltars/roundtrip3"

Expand All @@ -230,7 +230,7 @@ def test_roundtrip_azure_sas(azurite_sas_creds, sample_data: pa.Table):

@pytest.mark.azure
@pytest.mark.integration
@pytest.mark.timeout(timeout=5, method="thread")
@pytest.mark.timeout(timeout=60, method="thread")
def test_roundtrip_azure_decoded_sas(azurite_sas_creds, sample_data: pa.Table):
table_path = "az://deltars/roundtrip4"
azurite_sas_creds["SAS_TOKEN"] = urllib.parse.unquote(
Expand Down

0 comments on commit 69f0694

Please sign in to comment.