summaryrefslogtreecommitdiff
path: root/.gitlab-ci/test-flatpak-gtk4.sh
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci/test-flatpak-gtk4.sh')
-rwxr-xr-x.gitlab-ci/test-flatpak-gtk4.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci/test-flatpak-gtk4.sh b/.gitlab-ci/test-flatpak-gtk4.sh
index a299b641..2e775dab 100755
--- a/.gitlab-ci/test-flatpak-gtk4.sh
+++ b/.gitlab-ci/test-flatpak-gtk4.sh
@@ -8,8 +8,10 @@ export COVERAGE_FILE="${COV_DIR}/.coverage.${COV_KEY}"
mkdir -p "${COV_DIR}"
export TEST_GTK_VERSION=4.0
-python3 -m pip install --user pytest pytest-faulthandler coverage
+python3 -m venv _venv
+. _venv/bin/activate
+python3 -m pip install pytest pytest-faulthandler coverage
python3 setup.py build_tests
python3 -m coverage run --context "${COV_KEY}" tests/runtests.py
python3 -m coverage lcov -o "${COV_DIR}/${COV_KEY}.py.lcov"
-chmod -R 777 "${COV_DIR}" \ No newline at end of file
+chmod -R 777 "${COV_DIR}"