2017-11-24 23:10:39 +00:00
|
|
|
language: python
|
2019-07-03 07:21:03 +00:00
|
|
|
python: 3.7
|
2019-07-08 15:27:51 +00:00
|
|
|
cache: pip
|
2019-07-10 04:59:39 +00:00
|
|
|
before_install: pip install --upgrade pip setuptools
|
2019-07-08 15:27:51 +00:00
|
|
|
install: pip install -r requirements.txt
|
|
|
|
before_script:
|
|
|
|
- black --check . || true
|
2020-02-07 20:02:08 +00:00
|
|
|
- flake8 . --count --select=E101,E722,E9,F4,F63,F7,F82,W191 --show-source --statistics
|
2019-12-21 00:44:31 +00:00
|
|
|
- flake8 . --count --exit-zero --max-line-length=127 --statistics
|
2019-07-08 15:27:51 +00:00
|
|
|
script:
|
2019-08-06 19:53:12 +00:00
|
|
|
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
|
2019-07-08 15:27:51 +00:00
|
|
|
- mypy --ignore-missing-imports .
|
2019-11-17 18:37:58 +00:00
|
|
|
- pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=. .
|
2019-07-08 15:27:51 +00:00
|
|
|
after_success:
|
2019-11-01 03:06:20 +00:00
|
|
|
- scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|