CI: Don't skip any tests - they should work with Python 3.12

This commit is contained in:
Karolina Surma 2024-08-02 12:59:25 +02:00
parent 21395d17a5
commit 4b2e690e44

View File

@ -22,8 +22,4 @@ rm -r backend/
# Work around tests wanting a proper Hatch installation
echo '__version__ = "(bogus)"' > src/hatch/_version.py
# test_extra_met and test_unknown_extra try to pip install requests[security]==2.25.1
# which is too old to be compiled for Python 3.13 - skip them
k="not test_extra_met and not test_unknown_extra"
PYTHONPATH="$PWD/src" python3 -m pytest tests/backend -k "${k}" -v
PYTHONPATH="$PWD/src" python3 -m pytest tests/backend -v