summary refs log tree commit diff
path: root/.travis.yml
blob: 3ce93cb434f324bb92fe2ac6cca80324f41f62a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
sudo: false
language: python
python: 2.7

# tell travis to cache ~/.cache/pip
cache: pip

env:
  - TOX_ENV=packaging
  - TOX_ENV=pep8
  - TOX_ENV=py27

install:
  - pip install tox

script:
  - tox -e $TOX_ENV