You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies if this is not a tunit issue (perhaps it is a testing platform item?).
I am trying to leverage the dotnet test --filter functionality to limit what tests are run.
My basic setup:
Company.Tests: tunit project with just unit tests
Company.IntegrationTests: tunit project with integration tests. Also has [assembly: Category("Integration")]
I have tried numerous combinations of filters, none of which seem to work. A few examples I tried:
dotnet test --filter "FullyQualifiedName~IntegrationTests"
dotnet test --filter "Category=Integration"
The only thing I could get to work was the example from [Explicit]: dotnet run --treenode-filter ////
I just wanted to check if the dotnet filter part is meant to work from a tunit perspective?
Many thanks
The text was updated successfully, but these errors were encountered:
Apologies if this is not a tunit issue (perhaps it is a testing platform item?).
I am trying to leverage the
dotnet test --filter
functionality to limit what tests are run.My basic setup:
I have tried numerous combinations of filters, none of which seem to work. A few examples I tried:
dotnet test --filter "FullyQualifiedName~IntegrationTests"
dotnet test --filter "Category=Integration"
The only thing I could get to work was the example from [Explicit]: dotnet run --treenode-filter ////
I just wanted to check if the dotnet filter part is meant to work from a tunit perspective?
Many thanks
The text was updated successfully, but these errors were encountered: