Skip to content

Commit 19d237c

Browse files
committed
ci: split unit and functional tests
1 parent 43349bc commit 19d237c

6 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,8 @@ jobs:
3535
- name: Install requirements
3636
run: pip install -r requirements.txt
3737

38-
- name: Run tests
39-
run: python -m unittest discover -s tests -v
38+
- name: Run unit tests
39+
run: python -m unittest discover -s tests/unit -v
40+
41+
- name: Run functional tests
42+
run: python -m unittest discover -s tests/functional -v

tests/functional/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)