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 8cd0339 commit aa14324Copy full SHA for aa14324
.travis.yml
@@ -10,8 +10,11 @@ python:
10
- "2.7"
11
- "2.6"
12
13
-# command to install dependencies
14
-install: "pip install -Ur requirements.txt"
+install:
+# upgrade setuptools separately to avoid race condition
15
+- pip install -U setuptools
16
+# install dependencies
17
+- pip install -Ur requirements.txt
18
19
# command to run tests, e.g. python setup.py test
20
script: nosetests --with-cov --cov=xlrd
0 commit comments