Skip to content

Commit 6db3916

Browse files
committed
Fix S3 integration tests
1 parent c057ea1 commit 6db3916

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/s3-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Run S3 Tests
4545
run: |
46-
docker compose -f ./docker-compose.test.yml --profile s3 exec -T worker coverage run -m pytest -vvv -s ./tests/test_integration/test_run_transfer -m s3
46+
docker compose -f ./docker-compose.test.yml --profile s3 exec -T worker coverage run -m pytest -vvv -s ./tests/test_integration/test_run_transfer -m "s3 and not iceberg"
4747
4848
- name: Dump worker logs on failure
4949
if: failure()

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ test-integration-oracle: test-db ##@Test Run integration tests for Oracle
110110

111111
test-integration-s3: test-db ##@Test Run integration tests for S3
112112
docker compose -f docker-compose.test.yml --profile s3 up -d --wait $(DOCKER_COMPOSE_ARGS)
113-
${PYTEST} ./tests/test_integration -m s3 $(PYTEST_ARGS)
113+
${PYTEST} ./tests/test_integration -m "s3 and not iceberg" $(PYTEST_ARGS)
114114

115115
test-integration-sftp: test-db ##@Test Run integration tests for SFTP
116116
docker compose -f docker-compose.test.yml --profile sftp up -d --wait $(DOCKER_COMPOSE_ARGS)

0 commit comments

Comments
 (0)