aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ba47d054da5450e8e8cce9af75ee6e591e698f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
python:
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
before_script:
    # Travis versions of these are really outdated
    - pip install -U mock nose pytest
    # Only used in production for python3.4- but required for tests
    - pip install cryptography
    # Enable sending Coverage data
    - pip install codecov
script:
    - python setup.py validate
after_success:
    - codecov