You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ test-adls: ## Run tests marked with adls, can add arguments with PYTEST_ARGS="-v
76
76
77
77
test-gcs: ## Run tests marked with gcs, can add arguments with PYTEST_ARGS="-vv"
78
78
sh ./dev/run-gcs-server.sh
79
-
poetry run pytest tests/ -m gcs ${PYTEST_ARGS}
79
+
poetry run pytest tests/ -m gcs ${PYTEST_ARGS}
80
80
81
81
test-coverage-unit: # Run test with coverage for unit tests, can add arguments with PYTEST_ARGS="-vv"
82
82
poetry run coverage run --source=pyiceberg/ --data-file=.coverage.unit -m pytest tests/ -v -m "(unmarked or parametrize) and not integration"${PYTEST_ARGS}
@@ -85,14 +85,12 @@ test-coverage-integration: # Run test with coverage for integration tests, can a
poetry run coverage run --source=pyiceberg/ --data-file=.coverage.integration -m pytest tests/ -v -m integration ${PYTEST_ARGS}
94
92
95
-
test-coverage: | test-coverage-unit test-coverage-integration ## Run all tests with coverage including unit and integration tests
93
+
test-coverage: | test-coverage-unit test-coverage-integration test-s3 test-adls test-gcs ## Run all tests with coverage including unit and integration tests
96
94
poetry run coverage combine .coverage.unit .coverage.integration
0 commit comments