starlette/.travis.yml

20 lines
338 B
YAML
Raw Normal View History

2018-06-25 13:15:32 +00:00
language: python
cache: pip
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
2018-06-25 13:48:18 +00:00
- pip install codecov
2018-06-25 13:42:38 +00:00
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install black; fi
2018-06-25 13:15:32 +00:00
script:
- scripts/test
2018-06-25 13:42:38 +00:00
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then scripts/lint; fi
2018-06-25 13:48:18 +00:00
after_script:
- codecov