Skip to content

Commit 5c9625a

Browse files
committed
Update travis CI to test from .whl files
1 parent 3748e28 commit 5c9625a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ python:
88
- "pypy"
99
install:
1010
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; pip install -r requirements26.txt; fi
11+
- "rm -rf dist/*"
1112
- pip install -r requirements.txt
12-
script: nosetests tests
13+
- python setup.py bdist_wheel
14+
- pip install dist/*.whl
15+
script: cd tests/ && nosetests .

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
nose==1.2.1
22
py==1.4.12
33
tox==1.4.2
4+
wheel==0.24.0

0 commit comments

Comments
 (0)