Skip to content

Commit 35988ca

Browse files
committed
break out unit and integration tests
1 parent 80a31e4 commit 35988ca

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/python_ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,13 @@ jobs:
4444
run: |
4545
pyright lib
4646
47-
- name: Pytest
47+
- name: Pytest Unit Tests
4848
run: |
49-
pytest
49+
pytest -m "not integration"
50+
51+
- name: Pytest Integration Tests
52+
run: |
53+
pytest -m "integration"
5054
5155
- name: Sync Stubs Mypy
5256
working-directory: python/lib

0 commit comments

Comments
 (0)