mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
652b891a75
* Travis CI: Upgrade to Python 3.8 * updating DIRECTORY.md * Tensorflow is not yet compatible with Python 3.8 * Disable k_means_clustering_tensorflow.py * updating DIRECTORY.md * Disable gan.py * updating DIRECTORY.md * Disable input_data.py * updating DIRECTORY.md * pip install a current version of six
16 lines
610 B
YAML
16 lines
610 B
YAML
language: python
|
|
python: 3.8
|
|
cache: pip
|
|
before_install: pip install --upgrade pip setuptools six
|
|
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
|