public-apis/.travis.yml

16 lines
488 B
YAML
Raw Normal View History

language: python
python: "3.6"
notifications:
2017-08-05 22:54:12 +02:00
email: true
2017-12-29 05:01:12 +01:00
install:
- pip install -r build/requirements.txt
2017-06-29 18:25:56 +02:00
before_script:
2018-01-28 21:48:53 +01:00
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
2017-07-10 07:05:15 +02:00
- cd build
script:
2017-07-10 07:41:50 +02:00
- ./main.sh
2017-08-09 03:30:47 +02:00