aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index d792753..c561420 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,8 @@ python:
8before_script: 8before_script:
9 # Travis versions of these are really outdated 9 # Travis versions of these are really outdated
10 - pip install -U mock nose pytest 10 - pip install -U mock nose pytest
11 # Install wheel with pip instead of building from source 11 # Install wheel with pip instead of building from source but only for
12 - pip install cryptography 12 # Python 2 and 3.3
13 - if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install cryptography; fi
13script: 14script:
14 - python setup.py validate 15 - python setup.py validate