File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
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
- - run : mypy --ignore-missing-imports --install-types --non-interactive .
24
+ - run : |
25
+ mkdir -p .mypy_cache
26
+ mypy --ignore-missing-imports --install-types --non-interactive .
25
27
- name : Run tests
26
28
run : pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/validate_solutions.py --cov-report=term-missing:skip-covered --cov=. .
27
29
- if : ${{ success() }}
Original file line number Diff line number Diff line change 114
114
* [ Harris Corner] ( https://github.com/TheAlgorithms/Python/blob/master/computer_vision/harris_corner.py )
115
115
* [ Mean Threshold] ( https://github.com/TheAlgorithms/Python/blob/master/computer_vision/mean_threshold.py )
116
116
* [ Mosaic Augmentation] ( https://github.com/TheAlgorithms/Python/blob/master/computer_vision/mosaic_augmentation.py )
117
+ * [ Pooling Functions] ( https://github.com/TheAlgorithms/Python/blob/master/computer_vision/pooling_functions.py )
117
118
118
119
## Conversions
119
120
* [ Binary To Decimal] ( https://github.com/TheAlgorithms/Python/blob/master/conversions/binary_to_decimal.py )
You can’t perform that action at this time.
0 commit comments