Anthony Sottile | 27291ff | 2014-03-13 08:41:35 -0700 | [diff] [blame] | 1 | language: python |
Anthony Sottile | bec4406 | 2017-01-20 20:41:55 -0800 | [diff] [blame] | 2 | sudo: false |
| 3 | matrix: |
| 4 | include: # These should match the tox env list |
| 5 | - env: TOXENV=py27 |
| 6 | - env: TOXENV=py35 |
| 7 | python: 3.5 |
| 8 | - env: TOXENV=py36 |
| 9 | python: 3.6 |
| 10 | - env: TOXENV=pypy |
Anthony Sottile | 17478a0 | 2016-04-14 08:25:52 -0700 | [diff] [blame] | 11 | install: pip install coveralls tox |
Anthony Sottile | b80ca9e | 2014-04-13 22:09:14 -0700 | [diff] [blame] | 12 | script: tox |
gkisel | c682b50 | 2015-01-07 14:07:32 -0800 | [diff] [blame] | 13 | before_install: |
Anthony Sottile | 3f6f23d | 2015-12-25 09:25:14 -0800 | [diff] [blame] | 14 | # Install git-lfs for a test |
| 15 | - './get-git-lfs.py && export PATH="/tmp/git-lfs:$PATH"' |
Anthony Sottile | bec4406 | 2017-01-20 20:41:55 -0800 | [diff] [blame] | 16 | after_success: coveralls |
Anthony Sottile | 3a3a7a1 | 2015-12-25 09:37:18 -0800 | [diff] [blame] | 17 | cache: |
| 18 | directories: |
| 19 | - $HOME/.cache/pip |
| 20 | - $HOME/.pre-commit |
Anthony Sottile | 3f6f23d | 2015-12-25 09:25:14 -0800 | [diff] [blame] | 21 | - /tmp/git-lfs |