Skip to content

Commit

Permalink
chore: make test use multiple cores. (#2696)
Browse files Browse the repository at this point in the history
In the move to PDM in #2357 `make test` was modified to run `pytest tests` from `pytest tests -n auto`.

This appears to have been inadvertent, so this PR changes it back.
  • Loading branch information
peterschutt authored Nov 18, 2023
1 parent 3545c5f commit 38b35ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ coverage: ## Run the tests and generate coverage report
.PHONY: test
test: ## Run the tests
@echo "=> Running test cases"
@$(ENV_PREFIX)pytest tests
@$(ENV_PREFIX)pytest tests -n auto
@echo "=> Tests complete"

.PHONY: test-examples
Expand Down

0 comments on commit 38b35ad

Please sign in to comment.