I have 2 xunit tests I want to be ignored when triggering Run All Tests
from VS, and to only run if the user ran it/them specifically.
I've tried using [Fact(Skip = "Long test, only run if needed, and run independently")]
(or whatever message), however then it shows warnings, and the overall run's result is yellow like so, even though the rest passed:
I've found solutions on here that potentially allow this to be done via Resharper, however we do not have resharper available to us (I know... it sucks). I've also looked into SkippableFact
s, but I believe these will lead me to the same result as in the above picture. Not to mention when you try to run it on it's own it always skips as well, and you need to change it to a regular [Fact]
Does anyone know of any possible way to ignore a test unless intentionally, specifically, and individually triggered? Any other paths to try would be really helpful, I'm stumped. Thanks!