File tree 2 files changed +18
-19
lines changed
2 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ jobs:
34
34
run : pip install pytest-xdist
35
35
- name : mypy check
36
36
run : |
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
37
+ mypy -p AerialNavigation
38
+ mypy -p ArmNavigation
39
+ mypy -p Bipedal
40
+ mypy -p InvertedPendulumCart
41
+ mypy -p Localization
42
+ mypy -p Mapping
43
+ mypy -p PathPlanning
44
+ mypy -p PathTracking
45
+ mypy -p SLAM
46
46
- name : do diff style check
47
47
run : bash rundiffstylecheck.sh
48
48
- name : do all unit tests
Original file line number Diff line number Diff line change @@ -36,16 +36,15 @@ jobs:
36
36
run : pip install pytest-xdist
37
37
- name : mypy check
38
38
run : |
39
- find AerialNavigation -name "*.py" | xargs mypy
40
- find ArmNavigation -name "*.py" | xargs mypy
41
- find Bipedal -name "*.py" | xargs mypy
42
- find InvertedPendulumCart -name "*.py" | xargs mypy
43
- find Localization -name "*.py" | xargs mypy
44
- find Mapping -name "*.py" | xargs mypy
45
- find PathPlanning -name "*.py" | xargs mypy
46
- find PathTracking -name "*.py" | xargs mypy
47
- find SLAM -name "*.py" | xargs mypy
48
-
39
+ mypy -p AerialNavigation
40
+ mypy -p ArmNavigation
41
+ mypy -p Bipedal
42
+ mypy -p InvertedPendulumCart
43
+ mypy -p Localization
44
+ mypy -p Mapping
45
+ mypy -p PathPlanning
46
+ mypy -p PathTracking
47
+ mypy -p SLAM
49
48
- name : do diff style check
50
49
run : bash rundiffstylecheck.sh
51
50
You can’t perform that action at this time.
0 commit comments