File tree Expand file tree Collapse file tree 2 files changed +18
-19
lines changed Expand file tree Collapse file tree 2 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ jobs:
3434 run : pip install pytest-xdist
3535 - name : mypy check
3636 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
4646 - name : do diff style check
4747 run : bash rundiffstylecheck.sh
4848 - name : do all unit tests
Original file line number Diff line number Diff line change @@ -36,16 +36,15 @@ jobs:
3636 run : pip install pytest-xdist
3737 - name : mypy check
3838 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
4948 - name : do diff style check
5049 run : bash rundiffstylecheck.sh
5150
You can’t perform that action at this time.
0 commit comments