aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 38a96b7f646c813dbd781a1b4a10c66ea5a65b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python
matrix:
  include:
    - python: "3.5"
    - python: "3.6"
    - python: "3.7"
      dist: xenial
before_script:
    # Travis versions of these are really outdated
    - pip install -U mock nose pytest
    # Enable sending Coverage data
    - pip install codecov
script:
    - python setup.py release
after_success:
    - codecov