Skip to content

Commit

Permalink
Faster linux workflows (#256)
Browse files Browse the repository at this point in the history
* Run tests in parallel

* Dont use all cores
  • Loading branch information
MasloMaslane authored Aug 23, 2024
1 parent 678a23f commit 7706583
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Arch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
env:
PYTEST_ADDOPTS: "--color=yes"
run: |
python3 -m pytest -v
python3 -m pytest -v -n $((`nproc` / 2))
2 changes: 1 addition & 1 deletion .github/workflows/Ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
env:
PYTEST_ADDOPTS: "--color=yes"
run: |
python3 -m pytest -v
python3 -m pytest -v -n $((`nproc` / 2))

0 comments on commit 7706583

Please sign in to comment.