summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f962cc2a68978c0bdf8fd46db13572979e2aeb9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
dist: xenial
language: python
cache: pip
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
install:
- "pip install --upgrade pytest flake8"
script:
- "python setup.py develop"
- "flake8"
- "py.test"