Skip to content

Commit 35babc3

Browse files
authored
Merge pull request numpy#84 from rgommers/test-sdist
TST: run test suite after installing via sdist.
2 parents 92d9d2f + dea552c commit 35babc3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
language: python
44
sudo: false
55
python:
6-
- 3.5
6+
- 3.6
77
- 2.7
88
env:
99
- SPHINX_SPEC="Sphinx==1.2.3"
@@ -15,4 +15,8 @@ before_install:
1515
- pip install --upgrade pip setuptools # Upgrade pip and setuptools to get ones with `wheel` support
1616
- 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}
1717
script:
18-
- python setup.py test
18+
- |
19+
python setup.py sdist
20+
cd dist
21+
pip install numpydoc* -v
22+
- nosetests numpydoc

0 commit comments

Comments
 (0)