File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 55jobs :
66 test :
77 runs-on : ubuntu-latest
8+ env :
9+ PYTEST_DISABLE_PLUGIN_AUTOLOAD : " 1"
810 steps :
911 - uses : actions/checkout@v4
1012 - uses : actions/setup-python@v5
1113 with :
1214 python-version : " 3.11"
13-
1415 - name : Install pytest only
1516 run : |
1617 python -m pip install --upgrade pip
1718 pip install pytest==8.3.3
18-
1919 - name : Show repo and test file
2020 run : |
2121 python -V
2424 ls -la tests || true
2525 echo "--- test file content ---"
2626 test -f tests/test_ci.py && sed -n '1,120p' tests/test_ci.py || echo "tests/test_ci.py is missing"
27-
28- - name : Collect only this file
29- run : |
30- pytest --collect-only -q tests/test_ci.py -vv
31-
3227 - name : Run just this file
33- run : |
34- pytest -vv tests/test_ci.py
28+ run : pytest -vv tests/test_ci.py
You can’t perform that action at this time.
0 commit comments