10 lines
231 B
YAML
10 lines
231 B
YAML
language: python
|
|
cache: pip
|
|
python:
|
|
- '3.6'
|
|
install:
|
|
- pip install -U pip wheel setuptools flake8
|
|
- pip install -r ecrterm/requirements.txt
|
|
script:
|
|
- flake8 ecrterm/ || travis_terminate 1
|
|
- python -m unittest discover -v
|