aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 989a6f18c82ccbf6276bc04af004bcd8db00da33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: python
python:
- "3.6"
- "3.4"
install: pip install tox-travis pylint
matrix:
  fast_finish: true
  include:
  - stage: test
    name: Unit tests
    script: tox
  - stage: lint
    name: Linting
    script: pylint
  exclude:
  - stage: lint
    python: "3.4"
  allow_failures:
  - stage: lint