File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2121 run : |
2222 python -m pip install --upgrade pip setuptools six wheel
2323 python -m pip install mypy pytest-cov -r requirements.txt
24- # FIXME: #4052 fix mypy errors in the exclude directories and remove them below
25- - run : mypy --ignore-missing-imports
26- --exclude '(data_structures|digital_image_processing|dynamic_programming|graphs|maths|matrix|other|project_euler|scripts|searches|strings*)/$' .
24+ - run : mypy .
2725 - name : Run tests
2826 run : pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
2927 - if : ${{ success() }}
Original file line number Diff line number Diff line change 1+ [mypy]
2+ ignore_missing_imports = True
3+
4+ ; FIXME: #4052 fix mypy errors in the exclude directories and remove them below
5+ exclude = (data_structures|digital_image_processing|dynamic_programming|graphs|maths|matrix|other|project_euler|scripts|searches|strings*)/$
You can’t perform that action at this time.
0 commit comments