There was an error while loading. Please reload this page.
1 parent 45d99a8 commit 360251eCopy full SHA for 360251e
1 file changed
src/functionalTest/groovy/com/autonomousapps/AbstractFunctionalSpec.groovy
@@ -42,9 +42,13 @@ abstract class AbstractFunctionalSpec extends Specification {
42
def cleanup() {
43
// Delete fixtures on CI to prevent disk space growing out of bounds
44
if (gradleProject != null && isCi) {
45
+ def f = gradleProject.rootDir
46
try {
47
+ println("Deleting $f")
48
gradleProject.rootDir.deleteDir()
49
} catch (Throwable t) {
50
+ System.err.println("Error deleting gradleProject $f: ${t.localizedMessage}")
51
+ t.printStackTrace()
52
}
53
54
0 commit comments