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