I have a test where I do not need to run the SetUp method (attributed with [SetUp]) before running the test. I need the SetUp method t
SetUp
[SetUp]
You should create a new class for that test which has only the setup (or lack of setup) that it needs.
Alternatively, you could unfactor the setup code into a method that all the other tests call, but I don't recommend this approach.