summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3afcb2637c875d7d6c817d8e5437ff0c43554edd (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
language: python

sudo: false  # false enables container-based build for fast boot times on Linux

matrix:
    include:
        - os: linux
          python: 2.7
          env: TOXENV=py27
        - os: linux
          python: 3.3
          env: TOXENV=py33
        - os: linux
          python: 3.4
          env: TOXENV=py34
        - os: linux
          python: 3.5
          env: TOXENV=py35
        - os: linux
          python: 3.6
          env: TOXENV=py36
#        - os: linux
#          python: 3.7-dev
#          env: TOXENV=py37
#        # Warning: Don't try to use code coverage analysis with pypy as it is insanely slow
#        - os: linux
#          python: pypy
#          env: TOXENV=pypy
#        - os: linux
#          python: pypy3
#          env: TOXENV=pypy3
        # Stock OSX Python
#        - os: osx
#          language: generic
#          env: TOXENV=py27
#        # Latest Python 3.x from Homebrew
#        - os: osx
#          language: generic
#          env:
#            - TOXENV=py36
#            - BREW_INSTALL=python3

install:
  - pip install tox
#  - |
#    if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
#      if [[ -n "$BREW_INSTALL" ]]; then
#        brew update
#        brew install "$BREW_INSTALL"
#      fi
#    fi
#    pip install tox

script:
  - tox