Skip to content

Commit 266d16e

Browse files
committed
Use paths configured in pyproject.toml in CI
This also combines the two runs of mypy on src and typing_tests, as they can now both use the stricter rules.
1 parent f4fb560 commit 266d16e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@ jobs:
7474
path: ./coverage.lcov
7575

7676
- name: Analyse with MyPy
77-
run: mypy src
78-
79-
- name: Type tests with MyPy
80-
run: mypy --warn-unused-ignores typing_tests
77+
run: mypy
8178

8279
test-with-unpinned-deps:
8380
runs-on: ubuntu-latest
@@ -105,7 +102,7 @@ jobs:
105102

106103
- name: Analyse with MyPy
107104
if: success() || failure()
108-
run: mypy src
105+
run: mypy
109106

110107
- name: Test with pytest
111108
if: success() || failure()

0 commit comments

Comments
 (0)