diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e7b7ba..4c5dba4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ pytest: - image: python:3.10-alpine + image: python:3.11-alpine only: - main script: diff --git a/tests/start_tests.sh b/tests/start_tests.sh index 029d838..074b09a 100755 --- a/tests/start_tests.sh +++ b/tests/start_tests.sh @@ -1,4 +1,4 @@ -python3.10 -m pytest \ +python3.11 -m pytest \ --no-header \ -rfp \ --cov \ diff --git a/tests/start_tests_gitlab.sh b/tests/start_tests_gitlab.sh index 265d5e4..f896c87 100755 --- a/tests/start_tests_gitlab.sh +++ b/tests/start_tests_gitlab.sh @@ -1,9 +1,9 @@ apk add --update libmagic -pip3.10 install -r requirements.txt +pip3.11 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.10 tests/get_coverage_percent.py +python3.11 tests/get_coverage_percent.py