diff --git a/.drone.yml b/.drone.yml index 5ce1e34..054c896 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: CI Test Pipeline steps: - name: Unit Tests - image: python:3.10-bookworm + image: python:3.11-bookworm commands: - bash -c './scripts/run_unit_tests.sh' diff --git a/scripts/run_unit_tests.sh b/scripts/run_unit_tests.sh index 7ca34c3..d0ba374 100755 --- a/scripts/run_unit_tests.sh +++ b/scripts/run_unit_tests.sh @@ -9,4 +9,4 @@ if [ "${DRONE}" == "true" ]; then pip install -r requirements.txt -r dev-requirements.txt fi -exec "${VIRTUAL_ENV}/bin/python" -m pytest -vv --cov "$@" +exec "${VIRTUAL_ENV}/bin/python3" -m pytest -vv --cov "$@"