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 18df9d1 commit 97cc5fdCopy full SHA for 97cc5fd
.travis.yml
@@ -15,4 +15,10 @@ before_install:
15
- pip install --upgrade pip setuptools # Upgrade pip and setuptools to get ones with `wheel` support
16
- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --trusted-host wheels.astropy.org --trusted-host wheels2.astropy.org --use-wheel nose numpy matplotlib ${SPHINX_SPEC}
17
script:
18
- - python setup.py test
+ - |
19
+ python setup.py sdist
20
+ # Move out of source directory to avoid finding local scipy
21
+ pushd dist
22
+ pip install scipy* -v
23
+ popd
24
+ - nosetests numpydoc
0 commit comments