Skip to content

Commit 84f86c2

Browse files
committed
Only run make test when coverage is disabled
1 parent 5f8f7a0 commit 84f86c2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ install:
1414
- if [ "${COVERAGE}" == "--with-coverage" ]; then sudo pip install coverage; fi
1515
- if [ "${COVERAGE}" == "--with-coverage" ]; then sudo pip install coveralls; fi
1616
script:
17-
- make test
18-
- if [ "${COVERAGE}" == "--with-coverage" ]; then make test-coverage; fi
17+
- if [ "${COVERAGE}" == "--with-coverage" ]; then
18+
- make test-coverage;
19+
- else
20+
- make test;
21+
- fi
1922
after_success:
2023
- if [ "${COVERAGE}" == "--with-coverage" ]; then coveralls; fi
2124

0 commit comments

Comments
 (0)