From 20fb85a3f0420734a36dbcc528e69d41389179cb Mon Sep 17 00:00:00 2001 From: Sven Sager Date: Thu, 22 May 2025 11:45:45 +0200 Subject: [PATCH] ci: Install system dependencies for testing Signed-off-by: Sven Sager --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f046b1f..c7c23b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,8 @@ run_tests: stage: test image: python:3 script: + - apt-get update + - apt-get -y install dbus libgirepository1.0-dev - pip install -r requirements.txt - PYTHONPATH=src pytest -v --junitxml=report.xml --cov=src --cov-report term --cov-report xml:coverage.xml coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'