Skip to content

Commit 8dc23fe

Browse files
committed
mypy fail test
1 parent 0b9a0c8 commit 8dc23fe

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ jobs:
3030
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3131
- name: install coverage
3232
run: pip install coverage
33-
- name: Mypy Check
34-
uses: jpetrucciani/[email protected]
35-
with:
36-
path: './AerialNavigation ./PathPlanning'
37-
- name: Test
33+
- name: install mypy
34+
run: pip install mypy
35+
- name: mypy check
36+
run: |
37+
- find . -name "*.py" | xargs mypy
38+
- name: do all unit tests
3839
run: bash runtests.sh
3940

4041

0 commit comments

Comments
 (0)