runtime.scriptsFail = true;
MarathonTestCase t = new MarathonTestCase(new File("./failure.py"), runtime);
TestResult result = t.run();
assertEquals("test case should have failed", false, result.wasSuccessful());
assertEquals("each failing testcase should have one failure, and no errors", 1, result.failureCount());
assertEquals("each failing testcase should have one failure, and no errors", 0, result.errorCount());
}
}