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 ec5821c commit c0c73b6Copy full SHA for c0c73b6
.travis.yml
@@ -5,7 +5,13 @@ python:
5
- "3.3"
6
- "3.4"
7
- "3.5"
8
+env:
9
+ - INSTALL_LXML=true
10
+ - INSTALL_LXML=false
11
# Apparently six must be installed first, otherwise setup.py will be unhappy
-install: pip install six && pip install --upgrade -r requirements_dev.txt
12
+install:
13
+ - pip install six
14
+ - pip install --upgrade -r requirements_dev.txt
15
+ - if [ \"$INSTALL_LXML\" == \"true\" ]; then pip install lxml; fi
16
script: py.test --cov .
17
after_success: coveralls
0 commit comments