We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf565c9 commit 8046bc3Copy full SHA for 8046bc3
1 file changed
.travis.yml
@@ -4,12 +4,9 @@ python:
4
- "2.6"
5
- "2.7"
6
- "3.3"
7
-env:
8
- - REQUIREMENTS=""
9
- - REQUIREMENTS="unittest2"
10
install:
11
- - pip install $REQUIREMENTS
12
- python setup.py -q install
13
script:
+ - if [[ "$(python -c 'import sys; print sys.version_info[:2]')" == "(2, 6)" ]]; then pip install unittest2; fi
14
- py.test --tb=native jsonschema
15
- python -m doctest README.rst
0 commit comments