mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
670f952aa6
* Travis CI: Don’t allow bare exceptions * fixup! Format Python code with psf/black push * except IOError: * except IOError: * Update hamming_code.py * IndexError * Get rid of the nonsense logic Co-authored-by: John Law <johnlaw.po@gmail.com>
16 lines
606 B
YAML
16 lines
606 B
YAML
language: python
|
|
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=E101,E722,E9,F4,F63,F7,F82,W191 --show-source --statistics
|
|
- flake8 . --count --exit-zero --max-line-length=127 --statistics
|
|
script:
|
|
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
|
|
- mypy --ignore-missing-imports .
|
|
- pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=. .
|
|
after_success:
|
|
- scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|