aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8185452e22d015f3ce49c20916d21a1475d26c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
    python:
    - "3.6"
    script: pylint --rcfile pylintrc.cfg drutils
    install: pip install pylint
  allow_failures:
  - stage: lint