summaryrefslogtreecommitdiff
path: root/.gitlab-ci/test-flatpak-gtk4.sh
blob: 320a107fee5697e8458a911ae2ba573cb38b9ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e

COV_DIR="$(pwd)/coverage"
COV_KEY="gtk4"
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 setup.py build_tests
python3 -m coverage run --context "${COV_KEY}" tests/runtests.py
chmod -R 777 "${COV_DIR}"