Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/28168c1c6318005c3eee7b397ead364aa79ef944 You should set ROOT_URL correctly, otherwise the web may not work correctly.

trying to fix integration tests.

pull/29/merge
kay.one 12 years ago
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…
Cancel
Save