Skip to content

Commit 597dbd9

Browse files
committed
fix marks on fixtures
1 parent 36e57a4 commit 597dbd9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration/synapseclient/models/async/test_migration_async.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424
)
2525

2626

27-
@pytest.mark.skipif(
28-
os.getenv("GITHUB_ACTIONS") == "true",
29-
reason="This test runs only locally, not in CI/CD environments.",
30-
)
3127
@pytest_asyncio.fixture(loop_scope="session", scope="session")
3228
async def migration_storage_location(syn: Synapse) -> StorageLocation:
3329
"""Create a EXTERNAL_S3 storage location to migrate files into."""
@@ -43,6 +39,10 @@ def _assert_storage_location(file_handles, storage_location_id):
4339
assert fh.storage_location_id == storage_location_id
4440

4541

42+
@pytest.mark.skipif(
43+
os.getenv("GITHUB_ACTIONS") == "true",
44+
reason="This test runs only locally, not in CI/CD environments.",
45+
)
4646
class TestMigrateProjectWithStorageLocation:
4747
"""Tests migrating a project's files to a storage location created via StorageLocation model."""
4848

0 commit comments

Comments
 (0)