Skip to content

Commit 91accb7

Browse files
Update version and pytest
Changes to pytest allow easier testing on local machine.
1 parent 24318fc commit 91accb7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/push_checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
pip install -e '.[dev]'
3030
- name: Test with pytest
3131
run: |
32-
python3 -m pytest -m "not hardware" --cov=./ --cov-report=xml
32+
python3 -m pytest
3333
- name: Codecov
3434
uses: codecov/[email protected]
3535
with:

pytest.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
[pytest]
2-
addopts = --strict-markers
2+
addopts =
3+
--strict-markers
4+
-m "not hardware"
5+
--cov=./
6+
--cov-report=xml
37
markers =
48
hardware: mark tests as run on physical hardware
59
log_cli = true
10+
testpaths =
11+
test

src/navigate/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.8
1+
0.0.9

0 commit comments

Comments
 (0)