dominiontabs/.travis.yml
Peter da99939249
Simplify language tool (#270)
* simplify language tool by using standard json output
* stop supporting python < 3
2019-10-20 22:46:46 -07:00

13 lines
304 B
YAML

language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -U setuptools
- pip install .
- pip install -r requirements.txt
# command to run tests
script:
- python setup.py test
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == "3" ]]; then pre-commit run --all-files; fi