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

Disable some flaky tests on MacOS

pull/1689/head
ta264 6 years ago committed by Qstick
parent fc5e2b63e0
commit 92334d237a

@ -84,6 +84,7 @@ namespace NzbDrone.Common.Test.CacheTests
}
[Test]
[Platform(Exclude="MacOsX")]
public void should_honor_ttl()
{
int hitCount = 0;
@ -105,6 +106,7 @@ namespace NzbDrone.Common.Test.CacheTests
[Test]
[Retry(3)]
[Platform(Exclude="MacOsX")]
public void should_clear_expired_when_they_expire()
{
int hitCount = 0;

@ -7,6 +7,7 @@ using NzbDrone.Common.TPL;
namespace NzbDrone.Common.Test.TPLTests
{
[TestFixture]
[Platform(Exclude="MacOsX")]
public class DebouncerFixture
{
public class Counter
@ -126,4 +127,4 @@ namespace NzbDrone.Common.Test.TPLTests
counter.Count.Should().Be(1);
}
}
}
}

@ -10,6 +10,7 @@ using FluentAssertions;
namespace NzbDrone.Common.Test.TPLTests
{
[TestFixture]
[Platform(Exclude="MacOsX")]
public class RateLimitServiceFixture : TestBase<RateLimitService>
{
private DateTime _epoch;

Loading…
Cancel
Save