Skip to content

Commit

Permalink
Added -n auto from recent PR
Browse files Browse the repository at this point in the history
  • Loading branch information
famura committed Mar 21, 2024
1 parent f08e7b5 commit 5f8266d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Run the fast and the slow tests with coverage
run: |
pip install pytest-cov
pytest -m "not gpu" tests/ --cov=sbi --cov-report=xml --exitfirst
pytest -n auto -m "not gpu" tests/ --cov=sbi --cov-report=xml --exitfirst
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Run the fast tests with coverage
run: |
pip install pytest-cov
pytest -m "not slow and not gpu" tests/ --cov=sbi --cov-report=xml --exitfirst
pytest -n auto -m "not slow and not gpu" tests/ --cov=sbi --cov-report=xml --exitfirst
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
Expand Down

0 comments on commit 5f8266d

Please sign in to comment.