diff --git a/.github/workflows/workflow-lint-test-python.yml b/.github/workflows/workflow-lint-test-python.yml index fdc80b4..f3cfd76 100644 --- a/.github/workflows/workflow-lint-test-python.yml +++ b/.github/workflows/workflow-lint-test-python.yml @@ -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: | @@ -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'