Skip to content

Commit eab5f06

Browse files
committed
group the file io integration tests
1 parent f71806e commit eab5f06

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ lint: ## lint
4848
test: ## Run all unit tests, can add arguments with PYTEST_ARGS="-vv"
4949
poetry run pytest tests/ -m "(unmarked or parametrize) and not integration" ${PYTEST_ARGS}
5050

51-
test-s3: # Run tests marked with s3, can add arguments with PYTEST_ARGS="-vv"
52-
sh ./dev/run-minio.sh
53-
poetry run pytest tests/ -m s3 ${PYTEST_ARGS}
54-
5551
test-integration: | test-integration-setup test-integration-exec ## Run all integration tests, can add arguments with PYTEST_ARGS="-vv"
5652

5753
test-integration-setup: # Prepare the environment for integration
@@ -70,6 +66,10 @@ test-integration-rebuild:
7066
docker compose -f dev/docker-compose-integration.yml rm -f
7167
docker compose -f dev/docker-compose-integration.yml build --no-cache
7268

69+
test-s3: # Run tests marked with s3, can add arguments with PYTEST_ARGS="-vv"
70+
sh ./dev/run-minio.sh
71+
poetry run pytest tests/ -m s3 ${PYTEST_ARGS}
72+
7373
test-adls: ## Run tests marked with adls, can add arguments with PYTEST_ARGS="-vv"
7474
sh ./dev/run-azurite.sh
7575
poetry run pytest tests/ -m adls ${PYTEST_ARGS}

0 commit comments

Comments
 (0)