We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a41af46 commit 03e9093Copy full SHA for 03e9093
.github/workflows/tests.yml
@@ -0,0 +1,23 @@
1
+name: Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ tests-with-pip-install:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Set up Python
11
+ uses: actions/setup-python@v4
12
+ with:
13
+ python-version: 3.11
14
+ - name: Install system dependencies
15
+ run: |
16
+ sudo apt-get update
17
+ sudo apt-get install -y libglu1-mesa libxrender1 libxkbcommon-x11-0
18
+ - name: Install dependencies
19
20
+ python -m pip install .[dev]
21
+ python -m pip install pytest-xvfb
22
+ - name: Run tests
23
+ run: python -m pytest -v
0 commit comments