We have decorated some tests with the TagsAttribute to specify them as integration tests
[Tags("Integration")]
public class If_this_happens {
// rest of code
}
Now we try to run tests through commandline using dotnet test and want to exclude the integration tests. Is there a way to provide a parameter to dotnet test to exclude those tests?
We tried the --filter parameter with no success.
We have decorated some tests with the TagsAttribute to specify them as integration tests
Now we try to run tests through commandline using
dotnet testand want to exclude the integration tests. Is there a way to provide a parameter to dotnet test to exclude those tests?We tried the --filter parameter with no success.