From fcd2c354ae879b3351a244dde87426fd38558640 Mon Sep 17 00:00:00 2001 From: Elias Müller Date: Sat, 9 Jul 2022 19:17:23 +0200 Subject: Use xvfb-run to run tests --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d61529..5dfcb58 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,5 +49,5 @@ jobs: - name: 'Run Python Tests' run: | function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } - source venv/bin/activate - execute python -m pytest + execute source venv/bin/activate + execute xvfb-run python -m pytest -- cgit