removed stack trace in build when bundle audit is not installed

This commit is contained in:
Jeremy Long
2015-11-25 05:59:58 -05:00
parent 29c21c3611
commit 8b5dbeab44

View File

@@ -61,8 +61,8 @@ public class RubyBundleAuditAnalyzerTest extends BaseTest {
analyzer.setFilesMatched(true);
analyzer.initialize();
} catch (Exception e) {
LOGGER.warn("Exception setting up RubyBundleAuditAnalyzer. Tests will be incomplete", e);
Assume.assumeNoException("Is bundle-audit installed? TESTS WILL BE INCOMPLETE", e);
//LOGGER.warn("Exception setting up RubyBundleAuditAnalyzer. Tests will be incomplete", e);
Assume.assumeNoException("Exception setting up RubyBundleAuditAnalyzer; bundle audit may not be installed. Tests will be incomplete", e);
}
}