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 5f8f7a0 commit 84f86c2Copy full SHA for 84f86c2
.travis.yml
@@ -14,8 +14,11 @@ install:
14
- if [ "${COVERAGE}" == "--with-coverage" ]; then sudo pip install coverage; fi
15
- if [ "${COVERAGE}" == "--with-coverage" ]; then sudo pip install coveralls; fi
16
script:
17
- - make test
18
- - if [ "${COVERAGE}" == "--with-coverage" ]; then make test-coverage; fi
+ - if [ "${COVERAGE}" == "--with-coverage" ]; then
+ - make test-coverage;
19
+ - else
20
+ - make test;
21
+ - fi
22
after_success:
23
- if [ "${COVERAGE}" == "--with-coverage" ]; then coveralls; fi
24
0 commit comments