From ca33ebb5c2429ef07e2c23855aeddbf4ba1509e4 Mon Sep 17 00:00:00 2001 From: "John S. Ryan" Date: Fri, 23 Sep 2016 23:00:56 -0700 Subject: [PATCH] (temp) troubleshoot CI build. --- bin/unit-tests.sh | 2 +- exercises/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/unit-tests.sh b/bin/unit-tests.sh index 225b29622..fdcd882e3 100755 --- a/bin/unit-tests.sh +++ b/bin/unit-tests.sh @@ -10,6 +10,6 @@ bin/configlet . pushd exercises echo "" echo ">>> Running tests..." -TERM=dumb gradle check compileStarterSourceJava --continue +TERM=dumb gradle check compileStarterSourceJava --continue --stacktrace popd diff --git a/exercises/build.gradle b/exercises/build.gradle index 9548a68bf..2a5adefb6 100644 --- a/exercises/build.gradle +++ b/exercises/build.gradle @@ -33,7 +33,7 @@ subprojects { project -> from "src/test/java" into "build/gen/test/java" filter { line -> - line.contains("@Ignore") ? null : line + line.contains("@Ignore") ? "" : line } }