From 9b1353d07f01769bd966a93e7d84c3bae9a1091e Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Thu, 10 May 2018 14:36:14 -0400 Subject: [PATCH] move make check to the after_script Makes more sense there Signed-off-by: Neil Horman --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index eab4aac..5da12df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,4 +17,4 @@ addons: script: ./autogen.sh && ./configure && make && make check after_script: - - pwd && cat tests/rngtesturandom.sh.log && cat tests/rngtestzero.sh.log + - make check || (cat tests/rngtesturandom.sh.log && cat tests/rngtestzero.sh.log && cat ./tests/test-suite.log)