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 aba8560 commit 034a085Copy full SHA for 034a085
.travis.yml
@@ -12,7 +12,7 @@ before_script:
12
- env | sort
13
- date -u
14
- uname -a
15
-
+
16
- chmod +x tools/travis.linux.install.deps.sh
17
- chmod +x tools/travis.osx.install.deps.sh
18
@@ -25,3 +25,7 @@ script:
25
- cmake ..
26
- make
27
28
+after_script:
29
+ - cd ..
30
+ - chmod +x tools/travis.python.nosetests.sh
31
+ - ./tools/travis.python.nosetests.sh
tools/travis.python.nosetests.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
3
+cd test/pyTest
4
5
+if [ -x "bin/nosetests" ]; then
6
+ NOSE="bin/nosetests"
7
+else
8
+ NOSE="nosetests"
9
+fi
10
11
+$NOSE
0 commit comments