2015-06-09 17:20:21 +02:00
|
|
|
dist: trusty
|
|
|
|
|
2015-06-11 16:36:58 +02:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-06-09 17:20:21 +02:00
|
|
|
# Not really, but this is here so we can do stuff by hand.
|
|
|
|
language: c
|
|
|
|
|
2015-07-14 07:17:36 +02:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
|
|
|
- $HOME/build/The-Compiler/qutebrowser/.cache
|
|
|
|
|
2015-06-09 17:20:21 +02:00
|
|
|
install:
|
2015-06-28 22:31:30 +02:00
|
|
|
- python scripts/dev/ci_install.py
|
2015-06-09 17:20:21 +02:00
|
|
|
|
|
|
|
script:
|
2015-08-08 21:11:38 +02:00
|
|
|
- xvfb-run -s "-screen 0 640x480x16" tox -e py34
|
2015-06-09 17:20:21 +02:00
|
|
|
- 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
|
2015-06-23 19:02:43 +02:00
|
|
|
|
|
|
|
# Travis bug - OS X builds get routed to Ubuntu Trusty if "dist: trusty" is
|
|
|
|
# given.
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- os: osx
|