We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35812c8 commit 1f87721Copy full SHA for 1f87721
1 file changed
.github/workflows/cross_release.yaml
@@ -22,8 +22,11 @@ jobs:
22
- name: Install Dependencies
23
run: pip install -r requirements.txt
24
25
- - name: Run Tests
26
- run: pytest --cov=solver --cov=parser --cov=plotter
+ - name: Install Xvfb for GUI tests
+ run: sudo apt-get install -y xvfb
27
+
28
+ - name: Run Tests in Virtual Display
29
+ run: xvfb-run --auto-servernum pytest --cov=solver --cov=parser --cov=plotter
30
31
build:
32
needs: test
0 commit comments