summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 686dbbdaa415dfbd562deab2ed6d75fda66c5002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
dist: trusty

os:
  - linux
  - osx

# Not really, but this is here so we can do stuff by hand.
language: c

install:
  - python scripts/ci_install.py

script:
    - xvfb-run -s "-screen 0 640x480x16" tox -e unittests,smoke
    - tox -e misc
    - tox -e pep257
    - tox -e pyflakes
    - tox -e pep8
    - tox -e mccabe
    - tox -e pylint
    - tox -e pyroma
    - tox -e check-manifest

# Travis bug - OS X builds get routed to Ubuntu Trusty if "dist: trusty" is
# given.
matrix:
  allow_failures:
    - os: osx