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 4664baa commit 7decb11Copy full SHA for 7decb11
.github/workflows/main.yml
@@ -106,8 +106,9 @@ jobs:
106
run: |
107
source .venv/bin/activate
108
coverage erase
109
+ # Using `--parallel 4` as it's the number of CPUs in the GitHub Actions runner
110
# Using `installpkg dist/*.tar.gz` because we want to install the pre-built package (want to test against that)
- tox run-parallel -f ${{ matrix.toxfactor }} --parallel-no-spinner --parallel-live --installpkg dist/*.whl
111
+ tox run-parallel -f ${{ matrix.toxfactor }} --parallel 4 --parallel-no-spinner --parallel-live --installpkg dist/*.whl
112
coverage combine
113
coverage xml
114
0 commit comments