From 4b2e690e44ec4ca1696ca2c0f7ceb7f0b82af9cc Mon Sep 17 00:00:00 2001 From: Karolina Surma Date: Fri, 2 Aug 2024 12:59:25 +0200 Subject: [PATCH] CI: Don't skip any tests - they should work with Python 3.12 --- tests/unit/runtest.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/unit/runtest.sh b/tests/unit/runtest.sh index 920e70f..7469524 100755 --- a/tests/unit/runtest.sh +++ b/tests/unit/runtest.sh @@ -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