From 2461349b27385cf8c4e25c910a4af82dd96f8953 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sat, 21 Mar 2020 18:43:26 -0500 Subject: [PATCH] travis: Build full unix coverage build on osx job. This should help catch more compile errors with the clang compiler. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e93a015c4..207077b6b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -212,6 +212,8 @@ jobs: - make ${MAKEOPTS} -C ports/unix # OSX has poor time resolution and the following tests do not have the correct output - (cd tests && ./run-tests --exclude 'uasyncio_(basic|heaplock|lock|wait_task)') + # check for additional compiler errors/warnings + - make ${MAKEOPTS} -C ports/unix VARIANT=coverage after_failure: - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done)