-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Support xunit v3 #718
base: main
Are you sure you want to change the base?
Support xunit v3 #718
Conversation
Initial attempt at getting support for xunit v3. Will likely require much more involved changes to be able to support v2 and v3 simulataneously (e.g. a new package). Visual Studio integration does not appear to work.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #718 +/- ##
==========================================
+ Coverage 97.78% 98.52% +0.73%
==========================================
Files 15 15
Lines 271 271
Branches 37 37
==========================================
+ Hits 265 267 +2
+ Misses 3 2 -1
+ Partials 3 2 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Remove redundant reference for xunit.v3.extensibility.core.
`netstandard2.0` is no longer supported, so add `net472` instead.
Remove redundant using statements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete this when things moved to a new assembly.
Use the right kind of `DiagnosticMessage`.
Initial attempt at getting support for xunit v3.
Will likely require much more involved changes to be able to support v2 and v3 simultaneously (e.g. a new package). Visual Studio integration does not appear to work, and that's making it difficult to debug the fact that the message sink doesn't appear to be working.
Resolves #717.