summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 09:22:51 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-12-09 09:22:51 +0100
commite668d175dedf05dfcd04cb0cc0a6f0774d92cee6 (patch)
tree6eefb001f5611eb7f0974722aa688ae5a21e6c11 /.appveyor.yml
parent8827aad479ce7c8171c76c679d75c10acf185c6d (diff)
use 'ctest --output-on-failure' for unitary tests
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 125f3cf4..4a76ea0a 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -57,8 +57,8 @@ build_script:
- if [%target%]==[Python] (
cd src/python &
MSBuild Cython.sln /m /p:Configuration=Release /p:Platform=x64 &
- ctest -j 1 -C Release
+ ctest -j 1 --output-on-failure -C Release
) else (
MSBuild GUDHIdev.sln /m /p:Configuration=Release /p:Platform=x64 &
- ctest -j 1 -C Release -E diff_files
+ ctest -j 1 --output-on-failure -C Release -E diff_files
)