Skip to content

Commit 565acae

Browse files
committed
Git actions should only run unit tests, not integration tests
1 parent 9b989c9 commit 565acae

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
pip install -r requirements.txt
7373
7474
- name: Run tests
75-
run: python -m unittest discover -s tests
75+
run: python -m unittest discover -s tests/unit
7676

7777

7878
build:

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
pip install -r requirements.txt
4545
4646
- name: Run tests
47-
run: python -m unittest discover -s tests
47+
run: python -m unittest discover -s tests/unit
4848

4949
publish:
5050
name: Publish to ghcr.io

0 commit comments

Comments
 (0)