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

Updated DEVGUIDE.md test flags to match the build help #10557

Merged
merged 1 commit into from
Nov 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions DEVGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,19 @@ You can then open `FSharp.sln` in your editor of choice.

## Testing from the command line

You can find all test options as separate flags. For example:
You can find all test options as separate flags. For example `build -testAll`:

```
build -testDesktop -- test all net472 target frameworks
build -testCoreClr -- test all netstandard and netcoreapp target frameworks
build -testFSharpQA -- test all F# Cambridge tests
build -testVs -- test all VS integration points
build -testFcs -- test F# compiler service components
build -testAll -- all of the above
-testAll Run all tests
-testCambridge Run Cambridge tests
-testCompiler Run FSharpCompiler unit tests
-testCompilerService Run FSharpCompilerService unit tests
-testDesktop Run tests against full .NET Framework
-testCoreClr Run tests against CoreCLR
-testFSharpCore Run FSharpCore unit tests
-testFSharpQA Run F# Cambridge tests
-testScripting Run Scripting tests
-testVs Run F# editor unit tests
```

Running any of the above will build the latest changes and run tests against them.
Expand Down