Skip to content

Commit b4686d6

Browse files
author
Stewart Miles
committed
Fixed test execution using createNUnitTask().
This fixes the regression in Ibd6eddb3f18ebea6ceb5ca6bc96a918c5ba1dbc5 Change-Id: I6ba494a41cf89d16100b73ef30dafefd2cac5a0c
1 parent 8afc925 commit b4686d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -882,12 +882,12 @@ Task createNUnitTask(String name, String description, File testDll,
882882
description: description,
883883
type: Task,
884884
dependsOn: dependsOn).with {
885+
inputs.files testDll
886+
outputs.files logFile
885887
doFirst { checkNUnitConsolePath() }
886888
doLast {
887889
exec {
888890
workingDir project.ext.pluginSourceDir
889-
inputs.files testDll
890-
outputs.files logFile
891891
executable project.ext.nunitConsoleExe
892892
args ([sprintf("-output:%s", logFile.absolutePath),
893893
sprintf("-xml:%s", xmlLogFile.absolutePath),

0 commit comments

Comments
 (0)