Skip to content

Commit 5d28535

Browse files
committed
Trying a separate bash script to run the tests on travis.
The tests are passing but the Python3 build fails.
1 parent d8f1f79 commit 5d28535

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ install:
66
- pip install -r requirements.txt --use-mirrors
77
- pip install -r dev-requirements.txt --use-mirrors
88
script:
9-
- PYTHONPATH=. nosetests tests/unit
9+
- ./tests/run_tests.sh

tests/run_tests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
nosetests tests/unit
3+
exit $?

0 commit comments

Comments
 (0)