summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4125b598414ef8a6c58aa8d819e0b2d96c604244 (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
language: python
matrix:
  allow_failures:
    - os: osx
  include:
    - python: "2.7"
      os: linux
    - python: "3.4"
      os: linux
    - python: "3.5"
      os: linux
    - python: "3.6"
      os: linux
    - python: "3.7"
      os: linux
      # See https://github.com/travis-ci/travis-ci/issues/9815
      dist: xenial
      sudo: true
    - python: "pypy"
      os: linux
    - python: "pypy3.5"
      os: linux
install:
  - "pip install -r requirements.txt"
  - "pip install -r test-requirements.txt"
script:
 - "./run_tests.sh"
 - "./run_tests.sh --integration"
 - "./run_tests.sh --build"
 - "./run_tests.sh --pep8"
 - "./run_tests.sh --lint"
 - "./run_tests.sh --git"
after_success:
  - coveralls