We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998a117 commit 1d414d3Copy full SHA for 1d414d3
Makefile
@@ -27,8 +27,9 @@ lint:
27
test:
28
pytest -m 'not integration and not benchmark' --cov=databricks --cov-report html tests
29
30
+PYTEST_CONCURRENCY ?= auto
31
integration:
- pytest -n auto -m 'integration and not benchmark' --reruns 2 --dist loadgroup --cov=databricks --cov-report html tests
32
+ pytest -n $(PYTEST_CONCURRENCY) -m 'integration and not benchmark' --reruns 2 --dist loadgroup --cov=databricks --cov-report html tests
33
34
benchmark:
35
pytest -m 'benchmark' tests
0 commit comments