mirror of https://github.com/Sonarr/Sonarr
trying to fix integration tests.
This commit is contained in:
parent
daabc6364d
commit
28168c1c63
|
@ -40,7 +40,8 @@ namespace NzbDrone.Integration.Test
|
|||
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, consoleTarget));
|
||||
}
|
||||
|
||||
[TestFixtureSetUp]
|
||||
//[TestFixtureSetUp]
|
||||
[SetUp]
|
||||
public void SmokeTestSetup()
|
||||
{
|
||||
_runner = new NzbDroneRunner();
|
||||
|
@ -64,7 +65,8 @@ namespace NzbDrone.Integration.Test
|
|||
NamingConfig = new ClientBase<NamingConfigResource>(RestClient, "config/naming");
|
||||
}
|
||||
|
||||
[TestFixtureTearDown]
|
||||
//[TestFixtureTearDown]
|
||||
[TearDown]
|
||||
public void SmokeTestTearDown()
|
||||
{
|
||||
_runner.KillAll();
|
||||
|
|
|
@ -58,6 +58,7 @@ namespace NzbDrone.Integration.Test
|
|||
|
||||
if (statusCall.ResponseStatus == ResponseStatus.Completed)
|
||||
{
|
||||
Console.WriteLine("NzbDrone is started. Running Tests");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue