fix: disabled build tests for jackett due to failing year rollover tests upstream
This commit is contained in:
parent
8df63b3094
commit
2868448c2d
1 changed files with 12 additions and 0 deletions
|
|
@ -2,4 +2,16 @@
|
||||||
imports = [
|
imports = [
|
||||||
./impermanence.nix
|
./impermanence.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
config = {
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
# Disable jackett tests due to date-related test failures
|
||||||
|
# (ParseDateTimeGoLangTest expects 2024-09-14 but gets 2025-09-14 due to year rollover logic)
|
||||||
|
(final: prev: {
|
||||||
|
jackett = prev.jackett.overrideAttrs (oldAttrs: {
|
||||||
|
doCheck = false;
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue