Skip to content

Commit bd97dad

Browse files
committed
fix(ci): use correct test path (tests/ not tests/unit/)
Unit tests are in tests/ directly, not tests/unit/. Use --ignore flag to exclude integration tests from unit test run.
1 parent 7dbe7f4 commit bd97dad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Run unit tests
6565
run: |
66-
pytest tests/unit -v --cov=cli_audit --cov-report=xml --cov-report=term
66+
pytest tests/ --ignore=tests/integration -v --cov=cli_audit --cov-report=xml --cov-report=term
6767
6868
- name: Run integration tests
6969
run: |

0 commit comments

Comments
 (0)