py3-ecrterm/.travis.yml

11 lines
231 B
YAML
Raw Permalink Normal View History

2018-04-22 17:38:37 +02:00
language: python
2018-04-22 17:44:58 +02:00
cache: pip
2018-04-22 17:38:37 +02:00
python:
- '3.6'
install:
2019-09-01 12:00:51 +02:00
- pip install -U pip wheel setuptools flake8
2018-04-22 17:42:35 +02:00
- pip install -r ecrterm/requirements.txt
2018-04-22 17:38:37 +02:00
script:
2018-04-23 12:48:54 +02:00
- flake8 ecrterm/ || travis_terminate 1
2018-04-22 17:38:37 +02:00
- python -m unittest discover -v