Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xUnit.net + dotCover meta-runner fails with space in working folder path #135

Open
MitchMcHenry1 opened this issue Mar 18, 2019 · 0 comments

Comments

@MitchMcHenry1
Copy link

The current approach to using Invoke-Expression to launch nuget, xunit and dotCover exe's will fail if there is a space in the working folder path. It can be fixed by using call operator "&" and single quoted paths in conjunction with Invoke-Expression. Examples below with original code commented out followed by fixed code:

NuGet:

#Invoke-Expression "$nugetExe install xunit.runner.console -source $xUnitNuget"
Invoke-Expression "& '$nugetExe' install xunit.runner.console -source $xUnitNuget"

xUnit:

#$xunitOnlyCommand = "$xunit $xunitArg"
$xunitOnlyCommand = "& '$xunit' $xunitArg"

dotCover:

#$command = "$dotCover $dotCoverArgs"
$command = "& '$dotCover' $dotCoverArgs"
@MitchMcHenry1 MitchMcHenry1 changed the title [xUnit.net + dotCover meta-runner fails with space in working folder path xUnit.net + dotCover meta-runner fails with space in working folder path Mar 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant