-
Notifications
You must be signed in to change notification settings - Fork 3
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
dep: Update mstest monorepo to 3.6.3 #76
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/mstest-monorepo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
Branch automerge failureThis PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.
|
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
May 27, 2024 16:09
f4a5c69
to
750318c
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to v3.4.0
dep: Update mstest monorepo to v3.4.1
May 27, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
May 30, 2024 11:47
750318c
to
2cbe22e
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to v3.4.1
dep: Update mstest monorepo to v3.4.2
May 30, 2024
renovate
bot
changed the title
dep: Update mstest monorepo to v3.4.2
dep: Update mstest monorepo to v3.4.3
May 30, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
May 30, 2024 14:53
2cbe22e
to
e567b8e
Compare
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
July 16, 2024 21:35
e567b8e
to
986b73d
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to v3.4.3
dep: Update mstest monorepo to v3.5.0
Jul 16, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
August 5, 2024 23:16
986b73d
to
92a0006
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to v3.5.0
dep: Update mstest monorepo to v3.5.1
Aug 5, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
August 13, 2024 17:44
92a0006
to
cae76d8
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to v3.5.1
dep: Update mstest monorepo to v3.5.2
Aug 13, 2024
renovate
bot
changed the title
dep: Update mstest monorepo to v3.5.2
dep: Update mstest monorepo to 3.5.2
Aug 28, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
September 11, 2024 08:34
cae76d8
to
38b167f
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to 3.5.2
dep: Update mstest monorepo to 3.6.0
Sep 11, 2024
renovate
bot
changed the title
dep: Update mstest monorepo to 3.6.0
dep: Update mstest monorepo to 3.6.1
Oct 3, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
October 3, 2024 16:54
38b167f
to
4c1099d
Compare
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
October 31, 2024 16:58
4c1099d
to
f541c0d
Compare
renovate
bot
changed the title
dep: Update mstest monorepo to 3.6.1
dep: Update mstest monorepo to 3.6.2
Oct 31, 2024
renovate
bot
changed the title
dep: Update mstest monorepo to 3.6.2
dep: Update mstest monorepo to 3.6.3
Nov 12, 2024
renovate
bot
force-pushed
the
renovate/mstest-monorepo
branch
from
November 12, 2024 16:19
f541c0d
to
254860f
Compare
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.
This PR contains the following updates:
3.3.1
->3.6.3
3.3.1
->3.6.3
Release Notes
microsoft/testfx (MSTest.TestAdapter)
v3.6.2
See the release notes here
v3.6.1
See the release notes here
v3.6.0
See the release notes here
Special shoutout to @SimonCropp for his exceptional contribution in improving the quality of the repository.
v3.5.2
See the release notes here
v3.5.1
See the release notes here
v3.5.0
See the release notes here
v3.4.3
See the release notes here
v3.4.2
: v.3.4.2See the release notes here
v3.4.1
See the release notes here
v3.4.0
Here are the highlights of the current release, full change log is available below:
MSTest
New and improved analyzers
We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.
One example of a new analyzer that was added in 3.4.0 is
MSTEST0024: Do not store TestContext in static members
. This analyzer hasinfo
severity by default, and will show a message, when you storeTestContext
in a static member in your class. This is not recommended, and you should be using aTestContext
property instead:The other analyzers added in this release:
If you've just learned about MSTest analyzers, please also check out the analyzers that were added in previous releases. They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored.
The analyzers are automatically installed with the MSTest NuGet meta-package. But can also be installed separately using the MSTest.Analyzers NuGet package.
More timeout options
Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my
[ClassCleanup]
to time out after 1 second:Alternatively timeouts can be specified through runsettings. For example like this:
Better errors on data mismatch
When you provide data that don't match your test method signature, the test will fail with an informative message, rather than just "Parameter count mismatch.".
(There is also an analyzer that helps with the same while you are writing the code.)
MSTest SDK updates
We've introduced MSTest project SDK in this .NET Blog post.
Choosing version in global.json
In this release we are promoting a way to define the
MSTest.Sdk
version inglobal.json
. This makes it easier to specify the version in a single place, instead of in every project.Playwright support
We've added a property to enable Playwright, to simplify creating web tests:
Aspire testing support
Similarly we've added a property to enable Aspire testing:
Central package management
NuGet central package management can now be used together with
MSTest.Sdk
.More examples of SDK projects
To see more examples of projects using MSTest.Sdk:
https://github.com/microsoft/testfx/tree/rel/3.4/samples/public/DemoMSTestSdk
MSTest runner
Simpler banner
We've took inspiration from MSBuild and simplified the runner banner, to show the information, on a single line:
STA support and WinUI support
The runner can be configured to run in STA (Single Thread Apartment) mode, which is required for running UI tests. And it also supports WinUI workloads.
See MSTestRunnerWinUI example
And more
And much more, see the complete change log here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#3.4.0
New Contributors
A special thank you to all our new contributors:
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.