summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2012-12-20 08:49:32 -0800
committerVicent Martí <vicent@github.com>2012-12-20 08:49:32 -0800
commit4c10d1afebfd1923e842c34c4fa44f67c2bbf9af (patch)
tree2730307f05d6da85b27a0f4bdc662a6c85a8e1ac
parent92c4d25820a55186f3834891673fb9d72715d978 (diff)
parentcedc15af9959e4931ef39e24a6ca5e17b2688ee2 (diff)
downloadlibgit2-4c10d1afebfd1923e842c34c4fa44f67c2bbf9af.tar.gz
Merge pull request #1166 from scunz/antibiotica_for_travis
Mark travis build as failed if any test fails
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4b379985b..8ce490356 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,10 +29,10 @@ script:
- cd _build
- cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS
- cmake --build . --target install
+ - ctest -V .
# Run Tests
after_script:
- - ctest -V .
- if [ -f ./libgit2_clar ]; then valgrind --leak-check=full --show-reachable=yes --suppressions=../libgit2_clar.supp ./libgit2_clar -iall; else echo "Skipping valgrind"; fi
# Only watch the development branch