NUnit-retry
NUnit-retry copied to clipboard
A NUnit plugin that retries intermittently failing tests
Why does this package include the 3 nunit dll dependencies as Content under "nunit 2.6.3" rather than declare dependent nuget packages? NUnit.2.6.3 NUnit.AddinsDependencies.2.6.3
I run sample (https://github.com/slvnperron/NUnit-retry). Testing stops when executing a line: Assert.Fail or Assert.Pass. This case reproduces on different versions of NUnit(2.6.3/2.6.4) and NUnit-Retry(1.1.0/1.2.0).
I cherry-picked Brian Ku's tests. Reviewed the issue and it matched a problem I was having when trying to use the addin. Setup Methods and Teardown was ignored . Caused...
``` powershell Install-Package NUnit-retry ``` results in folder with only two files, no libs (`nunit-retry.dll`) ``` NUnit-retry.1.2.0.nupkg README.txt ```
We have to switch to NUnit version 2.6.4 and in appears that Retry doesn`t work with it... Any suggestions?
As soon as I added Retry to a test, that test began to ignore the Setup method.
The RetryAttribute only works for TestCase and TestCaseSource when it is specified on the method and not at the class level. See #2 for more information and see FixtureTests.cs for...