We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24318fc commit 91accb7Copy full SHA for 91accb7
.github/workflows/push_checks.yaml
@@ -29,7 +29,7 @@ jobs:
29
pip install -e '.[dev]'
30
- name: Test with pytest
31
run: |
32
- python3 -m pytest -m "not hardware" --cov=./ --cov-report=xml
+ python3 -m pytest
33
- name: Codecov
34
uses: codecov/[email protected]
35
with:
pytest.ini
@@ -1,5 +1,11 @@
1
[pytest]
2
-addopts = --strict-markers
+addopts =
3
+ --strict-markers
4
+ -m "not hardware"
5
+ --cov=./
6
+ --cov-report=xml
7
markers =
8
hardware: mark tests as run on physical hardware
9
log_cli = true
10
+testpaths =
11
+ test
src/navigate/VERSION
@@ -1 +1 @@
-0.0.8
+0.0.9
0 commit comments