Skip to content

Commit

Permalink
sonarr: disable failing darwin tests
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaskorz committed Feb 7, 2025
1 parent 512350f commit de3ce5e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/by-name/so/sonarr/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ buildDotnetModule {

# Skip manual, integration, automation and platform-dependent tests.
dotnetTestFlags = [
"--filter:${lib.concatStringsSep "&" [
"--filter:${lib.concatStringsSep "&" ([
"TestCategory!=ManualTest"
"TestCategory!=IntegrationTest"
"TestCategory!=AutomationTest"
Expand All @@ -150,10 +150,11 @@ buildDotnetModule {
# makes real HTTP requests
"FullyQualifiedName!~NzbDrone.Core.Test.TvTests.RefreshEpisodeServiceFixture"
"FullyQualifiedName!~NzbDrone.Core.Test.UpdateTests.UpdatePackageProviderFixture"
] ++ lib.optionals stdenvNoCC.hostPlatform.isDarwin [
# fails on macOS
"FullyQualifiedName!~NzbDrone.Core.Test.Http.HttpProxySettingsProviderFixture"
]}"
"FullyQualifiedName!=NzbDrone.Common.Test.ServiceFactoryFixture.event_handlers_should_be_unique"
])}"
];

passthru = {
Expand Down

0 comments on commit de3ce5e

Please sign in to comment.