We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df098fd + ebc43a3 commit 4463c21Copy full SHA for 4463c21
3 files changed
.github/workflows/test.yml
@@ -26,6 +26,21 @@ jobs:
26
- run: make dev
27
- run: make test
28
29
+ examples:
30
+ runs-on: ubuntu-latest
31
+ strategy:
32
+ matrix:
33
+ python: ['3.12']
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - name: Set up Python ${{ matrix.python }}
37
+ uses: actions/setup-python@v5
38
+ with:
39
+ python-version: ${{ matrix.python }}
40
+ cache: pip
41
+ - run: make dev
42
+ - run: make exampletest
43
+
44
format:
45
runs-on: ubuntu-latest
46
strategy:
Makefile
@@ -23,7 +23,10 @@ typecheck:
23
$(PYTHON) -m mypy src tests
24
25
unittest:
- $(PYTHON) -m pytest
+ $(PYTHON) -m pytest tests
+exampletest:
+ $(PYTHON) -m pytest examples
coverage: typecheck
coverage run -m unittest discover
tests/examples
0 commit comments