mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-25 07:57:12 -07:00
Merge pull request #370 from ethauvin/master
Disabled TestNG output on --log 0
This commit is contained in:
commit
9c8f13cc28
1 changed files with 5 additions and 0 deletions
|
@ -23,6 +23,11 @@ class TestNgRunner : GenericTestRunner() {
|
|||
override fun args(project: Project, context: KobaltContext, classpath: List<IClasspathDependency>,
|
||||
testConfig: TestConfig) = arrayListOf<String>().apply {
|
||||
|
||||
if (KobaltLogger.isQuiet) {
|
||||
add("-log")
|
||||
add("0")
|
||||
}
|
||||
|
||||
if (testConfig.testArgs.none { it == "-d" }) {
|
||||
add("-d")
|
||||
add(defaultOutput(project))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue