aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c561420bd0079ccedf1b26646b19cf9cadc1f5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
    # Install wheel with pip instead of building from source but only for
    # Python 2 and 3.3
    - if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install cryptography; fi
script:
    - python setup.py validate