Fix xvfb-run in pytest action

This commit is contained in:
Rebecca Breu 2021-05-31 18:22:43 +02:00
parent bc7ce7e09c
commit 1742daa743

View file

@ -26,6 +26,6 @@ jobs:
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX
- name: Run Unittests with pytest
run: |
xvfb-run coverage run --source=beeref -m pytest -v -s
xvfb-run --server-num=99 --server-args="-screen 0 1920x1200x24" coverage run --source=beeref -m pytest -v -s
- name: Upload Coverage report to Codecov
uses: codecov/codecov-action@v1