I couldn't find the answer in the docs, so here I am.
Before migrating to TUnit, all I had to do with xUnit was running dotnet test from my top-level directory.
Some of my test projects have the attribute IsTestProject set to false. This is to avoid running them everytime, as they are quite heavy and require specific configuration, so they have their own CI job.
Unfortunately, IsTestProject doesn't seem to be handled by TUnit. Is there a way to ignore specific folders?
Hello,
I couldn't find the answer in the docs, so here I am. Before migrating to TUnit, all I had to do with xUnit was running
dotnet test
from my top-level directory. Some of my test projects have the attributeIsTestProject
set to false. This is to avoid running them everytime, as they are quite heavy and require specific configuration, so they have their own CI job.Unfortunately,
IsTestProject
doesn't seem to be handled by TUnit. Is there a way to ignore specific folders?