File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,22 @@ before_script:
12
12
- env | sort
13
13
- date -u
14
14
- uname -a
15
-
15
+
16
16
- chmod +x tools/travis.linux.install.deps.sh
17
17
- chmod +x tools/travis.osx.install.deps.sh
18
18
19
19
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./tools/travis.linux.install.deps.sh; fi
20
20
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./tools/travis.osx.install.deps.sh; fi
21
21
22
+ - pip install pep8 pip-tools coviolations_app coverage
23
+
22
24
script :
23
25
- mkdir build
24
26
- cd build
25
27
- cmake ..
26
28
- make
27
29
30
+ after_script :
31
+ - cd ..
32
+ - chmod +x tools/travis.python.nosetests.sh
33
+ - ./tools/travis.python.nosetests.sh
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments