Skip to content

Commit fafc4c5

Browse files
committed
update ci.yml
1 parent 0b1eccb commit fafc4c5

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,21 @@ jobs:
2222
- name: check types
2323
run: mypy .
2424

25-
- name: run tests
25+
- name: run unittests
2626
run: >-
27-
pytest --cov
27+
pytest
28+
-m "not integration"
29+
--cov
30+
--cov-report xml:coverage.xml
31+
--cov-append
32+
-vv
33+
--hypothesis-show-statistics
34+
35+
- name: run integration tests
36+
run: >-
37+
pytest
38+
-m integration
39+
--cov
2840
--cov-report xml:coverage.xml
2941
--cov-append
3042
-vv

0 commit comments

Comments
 (0)