Skip to content

Commit

Permalink
Dont use xdist on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Jul 25, 2024
1 parent 8b4d638 commit d166b89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:
if: ${{ matrix.python-version == '3.12' }}
- name: Test with pytest (xdist)
run: |
poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing -n 16 --dist=loadgroup
poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing
if: ${{ matrix.python-version != '3.12' }}
- name: Test with pytest for 3.12 # https://github.com/Textualize/textual/issues/3491#issuecomment-1854156476
run: |
poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing -m 'not syntax' -n 16 --dist=loadgroup
poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing -m 'not syntax'
if: ${{ matrix.python-version == '3.12' }}
- name: Upload snapshot report
if: always()
Expand Down

0 comments on commit d166b89

Please sign in to comment.