mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Rename.
This commit is contained in:
parent
c6f91f6cab
commit
413606ec33
1 changed files with 3 additions and 3 deletions
|
@ -86,10 +86,10 @@ open class JvmCompilerPlugin @Inject constructor(
|
|||
private fun taskTest(project: Project, configName: String): TaskResult {
|
||||
lp(project, "Running tests: $configName")
|
||||
|
||||
val runContributor = ActorUtils.selectAffinityActor(project, context,
|
||||
val testContributor = ActorUtils.selectAffinityActor(project, context,
|
||||
context.pluginInfo.testRunnerContributors)
|
||||
if (runContributor != null && runContributor.affinity(project, context) > 0) {
|
||||
return runContributor.run(project, context, configName,
|
||||
if (testContributor != null && testContributor.affinity(project, context) > 0) {
|
||||
return testContributor.run(project, context, configName,
|
||||
dependencyManager.testDependencies(project, context))
|
||||
} else {
|
||||
log(1, "Couldn't find a test runner for project ${project.name}, did you specify a dependenciesTest{}?")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue