mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
5c351d81bf
* Implementation of Hardy Ramanujan Algorithm * added docstrings * added doctests * Run Python black on the code * Travis CI: Upgrade to Python 3.8 * Revert to Python 3.7
16 lines
488 B
YAML
16 lines
488 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=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
|