We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9875673 commit f1ce275Copy full SHA for f1ce275
.github/workflows/build.yml
@@ -21,6 +21,22 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip setuptools six wheel
23
python -m pip install pytest-cov -r requirements.txt
24
+ # FIXME: #4052 fix mypy errors in other directories and add them here
25
+ - run: python3 -m mypy --ignore-missing-imports
26
+ arithmetic_analysis
27
+ backtracking
28
+ bit_manipulation
29
+ blockchain
30
+ boolean_algebra
31
+ cellular_automata
32
+ computer_vision
33
+ digital_image_processing
34
+ fuzzy_logic
35
+ genetic_algorithm
36
+ geodesy
37
+ knapsack
38
+ networking_flow
39
+ scheduling sorts
40
- name: Run tests
41
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/ --cov-report=term-missing:skip-covered --cov=. .
42
- if: ${{ success() }}
0 commit comments