You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the property OutputPath is used in the build.yaml with a relative path (to the project path), it will not be made an absolute path by the task, meaning in this case, the test result file end up in the wrong place.
So here for each property that is a path, e.g. OutputPath, should be checked whether it is an absolute path. If not, join the relative path with the path in the variable above.
If the property
OutputPath
is used in the build.yaml with a relative path (to the project path), it will not be made an absolute path by the task, meaning in this case, the test result file end up in the wrong place.The variable
$DscTestOutputFolder
is set to the absolute path of the projects './output/testResults' folder here:DscResource.Test/source/tasks/Invoke_HQRM_Tests.build.ps1
Lines 90 to 93 in 27c70ec
So here for each property that is a path, e.g.
OutputPath
, should be checked whether it is an absolute path. If not, join the relative path with the path in the variable above.DscResource.Test/source/tasks/Invoke_HQRM_Tests.build.ps1
Line 240 in 27c70ec
The text was updated successfully, but these errors were encountered: