mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
6fa3c0b170
* Add Flake8 F4 Tests to .travis.yml F4 tests check for import errors. Implements issue #973 * Remove wildcard imports
17 lines
531 B
YAML
17 lines
531 B
YAML
language: python
|
|
dist: xenial # required for Python >= 3.7
|
|
python: 3.7
|
|
cache: pip
|
|
before_install: pip install --upgrade pip setuptools
|
|
install: pip install -r requirements.txt
|
|
before_script:
|
|
- black --check . || true
|
|
- flake8 . --count --select=E9,F4,F63,F7,F82 --show-source --statistics
|
|
script:
|
|
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
|
|
- mypy --ignore-missing-imports .
|
|
- pytest . --doctest-modules
|
|
after_success:
|
|
- scripts/build_directory_md.py > DIRECTORY.md
|
|
- cat DIRECTORY.md
|