Skip to content

Commit

Permalink
removed parallelization
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Nov 20, 2024
1 parent deb20f6 commit c868ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow-lint-test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
fi
pip install pytest pytest-cov # for coverage
pip install psycopg[binary]
pip install pytest-xdist
- name: Lint with ruff
run: |
Expand All @@ -49,7 +48,8 @@ jobs:
secrets: ${{ toJSON(secrets) }}

- name: Test with pytest
run: python -m pytest -n auto
run: |
python -m pytest
- name: Run tests with coverage (coverage must be at least 80% to pass)
if: inputs.skip-coverage != 'true'
Expand Down

0 comments on commit c868ae3

Please sign in to comment.