aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: dd545378580d5838c9a20f929ddfd498fb4106c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
python:
  - "3.5"
  - "3.6"
  - "3.7"
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 validate
after_success:
    - codecov