-
Notifications
You must be signed in to change notification settings - Fork 346
Update matrix #15477
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
Merged
Update matrix #15477
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
ef58ac5
Update matrix
nohwnd 6577f1c
Remove runtimes
nohwnd f49a123
Update test/TestAssets/MSTestProject2/UnitTest1.cs
nohwnd 4fb1487
Update test/TestAssets/MSTestProject1/UnitTest1.cs
nohwnd abafd3e
Merge branch 'main' into update-matrix
nohwnd fa5e4e1
Update eng/Versions.props
nohwnd ecc98a5
Merge branch 'main' into update-matrix
nohwnd df97dfa
Merge branch 'update-matrix' of https://github.com/nohwnd/vstest into…
nohwnd 066c37d
Split tests
nohwnd 1bf48ba
Remove skip that is no longer needed
nohwnd 64bdcd9
wip
nohwnd 691d24b
move tests
nohwnd e382b51
categories
nohwnd a652910
Update pipelines
nohwnd 8b69e5b
Apply suggestions from code review
nohwnd 89a29eb
Apply suggestion from @nohwnd
nohwnd 4e72353
Apply suggestion from @nohwnd
nohwnd 518e1a7
remove extra file
nohwnd cae5cf7
Merge branch 'split-integration-tests' of https://github.com/nohwnd/v…
nohwnd db85ed3
Potential fix for pull request finding
nohwnd 8dbe304
don't 'silently' skip
nohwnd e70f464
Merge branch 'split-integration-tests' of https://github.com/nohwnd/v…
nohwnd ce82579
speed up blame, and fix paralllization of tests that check process count
nohwnd 708f20c
Fix the flag
nohwnd c25228f
fix typo in the parameter name
nohwnd fe01823
Revert not filtering on linux
nohwnd 6f67ad8
missing runsettings
nohwnd 25269fa
Allow changing test runner arguments in proj
nohwnd 87da2ca
Typo
nohwnd 4d71204
Merge branch 'split-integration-tests' into update-matrix
nohwnd 8501425
pr fixes
nohwnd 61a414a
Merge branch 'main' into update-matrix
nohwnd 07c155a
Duplicated test
nohwnd 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
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 |
|---|---|---|
|
|
@@ -129,8 +129,10 @@ if ($filters.Count -gt 0 -or $testParameters.Count -gt 0) { | |
| $filterString = "--filter \`"$($filters -join '&')\`"" | ||
| $testParameterString = ($testParameters.GetEnumerator() | ForEach-Object { "--test-parameter $($_.Key)=$($_.Value)" }) -join ' ' | ||
|
|
||
| if (-not $PSBoundParameters.ContainsKey('properties')) { | ||
| $PSBoundParameters['properties'] = @() | ||
nohwnd marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| $PSBoundParameters['properties'] += "/p:TestRunnerExternalArguments=$filterString $testParameterString" | ||
| Write-Host "Running tests with filter: $filterString and additional parameters: $testParameterString" | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added that in previous pr, it is not useful. |
||
| } | ||
|
|
||
| # Call the build script provided by Arcade | ||
|
|
||
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
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
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
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.
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.
Updating xunit will be more pain probably, keeping for later.