We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f3add7 commit 80e6e46Copy full SHA for 80e6e46
.travis.yml
@@ -2,10 +2,11 @@ language: python
2
python:
3
- "2.7"
4
- "3.2"
5
+ - "3.4"
6
7
# command to install dependencies
8
install:
9
- pip install -r requirements_python`python version.py`.txt --use-mirrors
10
11
# command to run tests
-script: nosetests && sphinx-build -nW -b html -d docs/_build/doctrees docs docs/_build/html
12
+script: make test
makefile Makefile
@@ -5,3 +5,7 @@ register:
upload:
python setup.py sdist upload
+
+test:
+ nosetests
+ sphinx-build -nW -b html -d docs/_build/doctrees docs docs/_build/html
0 commit comments