diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c5dba4..7e95a73 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ pytest: - image: python:3.11-alpine + image: python:3.12-alpine only: - main script: diff --git a/tests/start_tests.sh b/tests/start_tests.sh index 074b09a..459ec60 100755 --- a/tests/start_tests.sh +++ b/tests/start_tests.sh @@ -1,4 +1,4 @@ -python3.11 -m pytest \ +python3.12 -m pytest \ --no-header \ -rfp \ --cov \ diff --git a/tests/start_tests_gitlab.sh b/tests/start_tests_gitlab.sh index f896c87..7c6d6cf 100755 --- a/tests/start_tests_gitlab.sh +++ b/tests/start_tests_gitlab.sh @@ -1,9 +1,9 @@ apk add --update libmagic -pip3.11 install -r requirements.txt +pip3.12 install -r requirements.txt pwd sh tests/start_tests.sh cp tests/coverage/coverage.xml ./coverage.xml cp tests/coverage/report.xml ./report.xml -python3.11 tests/get_coverage_percent.py +python3.12 tests/get_coverage_percent.py