diff --git a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs index 1faf6bb16..eb06fe0c8 100644 --- a/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs +++ b/src/NzbDrone.Common.Test/CacheTests/CachedFixture.cs @@ -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; diff --git a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs index 29e7bb7ec..fafac4c0b 100644 --- a/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs +++ b/src/NzbDrone.Common.Test/TPLTests/DebouncerFixture.cs @@ -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); } } -} \ No newline at end of file +} diff --git a/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs b/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs index e5ccc8244..cd4d611e6 100644 --- a/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs +++ b/src/NzbDrone.Common.Test/TPLTests/RateLimitServiceFixture.cs @@ -10,6 +10,7 @@ using FluentAssertions; namespace NzbDrone.Common.Test.TPLTests { [TestFixture] + [Platform(Exclude="MacOsX")] public class RateLimitServiceFixture : TestBase { private DateTime _epoch;