Skip to content

Commit ae2593b

Browse files
committed
mypy fix test
1 parent 14ffc4a commit ae2593b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.6, 3.7]
12+
python-version: [3.7, 3.8]
1313

1414
steps:
1515
- uses: actions/checkout@v1
@@ -34,7 +34,15 @@ jobs:
3434
run: pip install mypy
3535
- name: mypy check
3636
run: |
37-
find . -name "*.py" | xargs mypy
37+
find AerialNavigation -name "*.py" | xargs mypy
38+
find ArmNavigation -name "*.py" | xargs mypy
39+
find Bipedal -name "*.py" | xargs mypy
40+
find InvertedPendulumCart -name "*.py" | xargs mypy
41+
find Localization -name "*.py" | xargs mypy
42+
find Mapping -name "*.py" | xargs mypy
43+
find PathPlanning -name "*.py" | xargs mypy
44+
find PathTracking -name "*.py" | xargs mypy
45+
find SLAM -name "*.py" | xargs mypy
3846
- name: do all unit tests
3947
run: bash runtests.sh
4048

0 commit comments

Comments
 (0)