Commit c49fa08 1 parent 8c29860 commit c49fa08 Copy full SHA for c49fa08
File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 21
21
run : |
22
22
python -m pip install --upgrade pip setuptools six wheel
23
23
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 .
27
25
- name : Run tests
28
26
run : pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
29
27
- 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