File tree Expand file tree Collapse file tree 2 files changed +4
-16
lines changed
Expand file tree Collapse file tree 2 files changed +4
-16
lines changed Original file line number Diff line number Diff line change @@ -4,26 +4,20 @@ language: python
44python : 3.8
55cache : pip
66before_install : pip install --upgrade pip setuptools six
7- install : pip install black flake8
87jobs :
98 include :
109 - name : Build
11- before_script :
12- - black --check . || true
13- - flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=88 --statistics --count .
14- - scripts/validate_filenames.py # no uppercase, no spaces, in a directory
15- - pip install -r requirements.txt # fast fail on black, flake8, validate_filenames
10+ install : pip install pytest-cov -r requirements.txt
1611 script :
17- - mypy --ignore-missing-imports . || true # https://github.com/python/mypy/issues/7907
1812 - pytest --doctest-modules --ignore=project_euler/ --durations=10 --cov-report=term-missing:skip-covered --cov=. .
1913 - name : Project Euler
20- before_script :
14+ install :
2115 - pip install pytest-cov pytest-subtests
2216 - pytest --tb=no --no-summary --capture=no project_euler/validate_solutions.py || true # fail fast on wrong solution
2317 script :
2418 - pytest --doctest-modules --durations=10 --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/
2519after_success :
2620 - scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
2721notifications :
28- webhooks : https://www.travisbuddy.com/
29- on_success : never
22+ webhooks : https://www.travisbuddy.com/
23+ on_success : never
Original file line number Diff line number Diff line change 11beautifulsoup4
2- black
32fake_useragent
4- flake8
53keras
64lxml
75matplotlib
8- mypy
96numpy
107opencv-python
118pandas
129pillow
13- pre-commit
14- pytest
15- pytest-cov
1610requests
1711scikit-fuzzy
1812sklearn
You can’t perform that action at this time.
0 commit comments