We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running xUnit test runner with Silent setting, it uses -silent parameter which is no longer supported by xunit.runner.console 2.1+
-silent
xUnit2 (fun p -> { p with ToolPath = "../packages/xunit.runner.console.2.1.0/tools/xunit.console.exe" Silent = true })
produces
/Library/Frameworks/Mono.framework/Commands/mono "../packages/xunit.runner.console.2.1.0/tools/xunit.console.exe" "<edited>/out/FAKE_xUnit_repro.exe" -parallel none -silent error: missing filename for -silent
The correct parameter according to xUnit documentation (including the one pasted in the Fake.Testing.XUnit2 file itself) is -quiet instead of -silent.
-quiet
The text was updated successfully, but these errors were encountered:
Merge pull request #1464 from jbrestan/xunit-silent-fix
7869cfa
Fix for #1463: Use correct CLI parameter for silent xUnit output
PR merged, closing
Sorry, something went wrong.
No branches or pull requests
When running xUnit test runner with Silent setting, it uses
-silent
parameter which is no longer supported by xunit.runner.console 2.1+produces
The correct parameter according to xUnit documentation (including the one pasted in the Fake.Testing.XUnit2 file itself) is
-quiet
instead of-silent
.The text was updated successfully, but these errors were encountered: