Skip to content

Commit

Permalink
Reduce workers to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthivNaresh committed Mar 3, 2021
1 parent c13e735 commit f9a5dba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -22,15 +22,15 @@ test:

.PHONY: git-test
git-test:
pytest evalml/ -n 8 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure
pytest evalml/ -n 4 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure

.PHONY: git-test-minimal-deps
git-test-minimal-deps:
pytest evalml/ -n 8 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure --has-minimal-dependencies
pytest evalml/ -n 4 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure --has-minimal-dependencies

.PHONY: win-git-test
win-git-test:
pytest evalml/ -n 8 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure
pytest evalml/ -n 4 --doctest-modules --cov=evalml --junitxml=test-reports/junit.xml --doctest-continue-on-failure

.PHONY: installdeps
installdeps:
Expand Down

0 comments on commit f9a5dba

Please sign in to comment.