Skip to content

Commit

Permalink
build: test if disabling xdist actually speeds up pytest run
Browse files Browse the repository at this point in the history
  • Loading branch information
achidlow committed Dec 14, 2023
1 parent beb544e commit 1e7def4
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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
poetry shell
pre-commit run --all-files && git diff --exit-code
algokit localnet start
pytest
pytest -n0
- name: Get branch name
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
shell: bash
run: |
set -o pipefail
poetry run pytest --junitxml=pytest-junit.xml --cov | tee pytest-coverage.txt
poetry run pytest -n0 --junitxml=pytest-junit.xml --cov | tee pytest-coverage.txt
- name: pytest coverage comment
continue-on-error: true # forks fail to add a comment, so continue any way
Expand Down

0 comments on commit 1e7def4

Please sign in to comment.