File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Test Suite
33
44on :
55 push :
6- branches : ["master "]
6+ branches : ["main "]
77 pull_request :
8- branches : ["master", "version-* "]
8+ branches : ["main "]
99
1010jobs :
1111 tests :
2323 python-version : " ${{ matrix.python-version }}"
2424 - name : " Install dependencies"
2525 run : " scripts/install"
26+ - name : " Run tests"
27+ run : " scripts/test"
2628
2729 # - name: "Run linting checks"
2830 # run: "scripts/check"
3133 # - name: "Run tests"
3234 # run: "scripts/test"
3335 # - name: "Enforce coverage"
34- # run: "scripts/coverage"
36+ # run: "scripts/coverage"
Original file line number Diff line number Diff line change 11-e .
2+
3+ pytest
Original file line number Diff line number Diff line change 1+ #! /bin/sh -e
2+
3+ export PREFIX=" "
4+ if [ -d ' venv' ] ; then
5+ export PREFIX=" venv/bin/"
6+ fi
7+
8+ set -x
9+
10+ ${PREFIX} pytest " $@ "
Original file line number Diff line number Diff line change 1+ def test_mkdocs ():
2+ pass
You can’t perform that action at this time.
0 commit comments