There's a few ways you can do this. The way that I generally recommend is to mark each of the tests with a distinctive category, then set up a custom
engine mode that will avoid automatically running tests that are marked with this category. Using this approach, it's still possible to run the tests manually using NCrunch, assuming that they still execute correctly within the NCrunch test environment. It's also possible to create more complex engine modes that have different selection criteria (i.e. regex expressions on test names, or comparisons on project names, etc).
A simpler but more limited approach is to right click on the project inside the Tests Window and click the 'Ignore tests' option. This will tell NCrunch to
ignore the tests via a regex expression that is stored in the project's NCrunch configuration file. You won't be able to run the tests with NCrunch (even manually) until they have been 'unignored'. The 'Ignore tests' feature can be applied at project level, fixture (class) level, and test level.