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
|
2019-09-13 12:07:24 +00:00
|
|
|
- flake8 . --count --select=E9,F4,F63,F7,F82 --show-source --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-07-18 22:34:29 +00:00
|
|
|
- pytest . --doctest-modules
|
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
|