Skip to content

Commit

Permalink
Run pytest in parallel
Browse files Browse the repository at this point in the history
Signed-off-by: Cristian Le <cristian.le@mpsd.mpg.de>
  • Loading branch information
LecrisUT committed Dec 5, 2023
1 parent fe7bab7 commit 7556316
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/step_coverage.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
run: python -m ipykernel install --name python_kernel --user

- name: Run the tests
run: pytest tests/${{ matrix.coverage }} --cov
run: pytest tests/${{ matrix.coverage }} --cov -n logical

- name: Upload the coverage
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step_tests-conda.yml
Expand Up @@ -61,7 +61,7 @@ jobs:
python -m jupyterlab.browser_check
- name: Test with pytest
run: pytest --cov
run: pytest --cov -n logical

- name: Upload coverage
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/step_tests-pip.yml
Expand Up @@ -83,7 +83,7 @@ jobs:
python -m jupyterlab.browser_check
- name: Test with pytest
run: pytest --cov
run: pytest --cov -n logical

- name: Upload coverage
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 7556316

Please sign in to comment.