Skip to content

Commit

Permalink
Fix test results being read in the wrong directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeust committed Oct 30, 2018
1 parent 61534e1 commit 71540a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TestNgRunner : GenericTestRunner() {
override val annotationPackage = "org.testng"
override val runnerName = "TestNG"

fun defaultOutput(project: Project) = KFiles.joinDir(project.buildDirectory, "test-output")
private fun defaultOutput(project: Project) = KFiles.joinDir(project.directory, project.buildDirectory, "test-output")

override fun args(project: Project, context: KobaltContext, classpath: List<IClasspathDependency>,
testConfig: TestConfig) = arrayListOf<String>().apply {
Expand Down

0 comments on commit 71540a4

Please sign in to comment.