uses: GabrielBB/xvfb-action@v1

This commit is contained in:
Christian Clauss 2021-08-02 17:39:44 +02:00 committed by Mathieu Comandon
parent e527bb1989
commit 88a221ffbf

View file

@ -15,9 +15,13 @@ jobs:
- run: sudo apt-get update -y
- run: sudo apt-get install libdbus-1-dev libgirepository1.0-dev
gir1.2-gnomedesktop-3.0 gir1.2-gtk-3.0 gir1.2-webkit2-4.0
- run: pip install PyGObject -r requirements.txt # -r requirements-dev.txt
- run: pip install Pillow PyGObject -r requirements.txt # -r requirements-dev.txt
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
- run: pytest . || true
- run: pytest --doctest-modules . || true
- uses: GabrielBB/xvfb-action@v1
with:
run: pytest . || true
- uses: GabrielBB/xvfb-action@v1
with:
run: pytest --doctest-modules . || true
- run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true
- run: safety check || true