crauscher
crauscher

Reputation: 6618

How do I force the ReSharper test runner to run tests sequentially?

Is it possible to force the ReSharper 5.1 unit test runner to run all tests sequentially? I cannot run the tests in parallel (some integration tests in the solution change the database and so other tests fail).

Upvotes: 2

Views: 1646

Answers (1)

Andrew Seaford
Andrew Seaford

Reputation: 644

To run the tests sequentially add the sequential attribute to the tests.

[Test, Sequential]

For more information about the Sequential Attribute see http://nunit.org/docs/2.6.4/sequential.html

Upvotes: 1

Related Questions