aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7e307fe8d233e89bc474f0ba7dcbcf73cb2ec87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python

matrix:
  fast_finish: true
  include:
  - stage: test
    python:
    - "3.6"
    - "3.4"
    install: pip install tox-travis
    name: Unit tests
    script: tox
  - stage: lint
    name: Linting
    script: pylint
    install: pip install pylint
  allow_failures:
  - stage: lint