Skip to content

Commit

Permalink
Add graphical tests on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoinePrv committed Oct 13, 2022
1 parent 61a34b3 commit e23eead
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ jobs:
- name: Install
run: cmake --install build/cmake/conda-debug-osmesa
- name: Test
run: python -m pytest ./test
run: python -m pytest ./test -k 'not plot'
- name: Graphical Test
if: ${{ matrix.os }} == 'ubuntu-latest'
run: >
sudo apt-get install libgl1-mesa-dev xvfb
xvfb-run python -m pytest ./test -k 'plot'
static-analysis:
runs-on: "ubuntu-latest"
Expand Down

0 comments on commit e23eead

Please sign in to comment.