-
Notifications
You must be signed in to change notification settings - Fork 786
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
Removing Nunit from utils #17770
Merged
Merged
Removing Nunit from utils #17770
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
✅ No release notes required |
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/CompilationFromCmdlineArgsTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/CompilationFromCmdlineArgsTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/DependencyResolutionTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/DependencyResolutionTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/FileContentMappingTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/TrieMappingTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
tests/FSharp.Core.UnitTests/FSharp.Core/Microsoft.FSharp.Core/IntConversionsTestGenerator.fsx
Show resolved
Hide resolved
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 23, 2024
psfinaki
commented
Sep 24, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/DependencyResolutionTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 24, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/FileContentMappingTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 24, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/GraphProcessingTests.fs
Show resolved
Hide resolved
psfinaki
commented
Sep 24, 2024
psfinaki
commented
Sep 24, 2024
tests/FSharp.Compiler.ComponentTests/TypeChecks/Graph/TrieMappingTests.fs
Show resolved
Hide resolved
T-Gro
approved these changes
Sep 24, 2024
abonie
approved these changes
Sep 24, 2024
esbenbjerre
pushed a commit
to esbenbjerre/fsharp
that referenced
this pull request
Sep 30, 2024
* Migrate last Nunit tests to Xunit * up * up * up * Update TestLib.LanguageService.fs * up * up * up * Remove unused tests * one more * Salsa * up * up * up * Update FsUnit.fs * Up * Update AsyncTests.fs --------- Co-authored-by: Kevin Ransom (msft) <codecutter@hotmail.com>
This was referenced Oct 31, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related: #13654
TL;DR: We are nearly done!
Please see my comments everywhere, this is close to the equivalent code, with minor simplifications and fixes.
Note this increases the number of tests executed in the CI. The execution time is not affected.
Main:
This branch:
This is due to:
FSharpSuite
. Those are old-newAsyncTests
and they are skipped anyway for now. See comment.ComponentTests.TypeChecks
. Of those:CompilationFromCmdlineArgsTests
and 1TypedTreeGraphTests
- those were explicit + failing, now skippedDependencyResolutionTests
- this is legit and passing, wasn't being executed as[<Theory>]
was forgotten thereFileContentMappingTests
, 1GraphProcessingTests
, 4QueryTrieTests
, 18TrieMappingTests
- those are legit and passing, weren't being executed because weren't rewritten to Xunit (so trying executing non-existing Nunit adapter)