.travis.yml 509 字节
Newer Older
Anthony Sottile's avatar
Anthony Sottile 已提交
1
language: python
2
3
4
5
6
7
8
9
10
sudo: false
matrix:
    include:  # These should match the tox env list
    -   env: TOXENV=py27
    -   env: TOXENV=py35
        python: 3.5
    -   env: TOXENV=py36
        python: 3.6
    -   env: TOXENV=pypy
Anthony Sottile's avatar
Anthony Sottile 已提交
11
install: pip install coveralls tox
Anthony Sottile's avatar
Anthony Sottile 已提交
12
script: tox
13
before_install:
14
15
  # Install git-lfs for a test
  - './get-git-lfs.py && export PATH="/tmp/git-lfs:$PATH"'
16
after_success: coveralls
17
18
19
20
cache:
    directories:
        - $HOME/.cache/pip
        - $HOME/.pre-commit
21
        - /tmp/git-lfs