File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,11 +61,11 @@ jobs:
6161 - name : Run tests without xdist
6262 uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
6363 with :
64- command : pytest -c oldest/pyproject.toml - svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml
64+ command : pytest -svv -p no:xdist --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml
6565 - name : Run xdist test
6666 uses : fizyk/actions-reuse/.github/actions/pipenv-run@v4.1.1
6767 with :
68- command : pytest -n auto -c oldest/pyproject.toml - -dist loadgroup --max-worker-restart 0 --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml:coverage-xdist.xml
68+ command : pytest -n auto --dist loadgroup --max-worker-restart 0 --postgresql-exec="/usr/lib/postgresql/${{ inputs.postgresql }}/bin/pg_ctl" -k "not docker" --cov-report=xml:coverage-xdist.xml
6969 - uses : actions/upload-artifact@v5
7070 if : failure()
7171 with :
Original file line number Diff line number Diff line change @@ -63,6 +63,14 @@ testpaths = ["tests"]
6363pytester_example_dir = " tests/examples"
6464norecursedirs = [" examples" ]
6565
66+ [tool .pytest .ini_options ]
67+ xfail_strict =true
68+ addopts = " --showlocals --verbose --cov"
69+ testpaths = " tests"
70+ pytester_example_dir = " tests/examples"
71+ norecursedirs = " ../examples"
72+
73+
6674[tool .ruff ]
6775line-length = 120
6876target-version = ' py310'
You can’t perform that action at this time.
0 commit comments