nix-config/overlays/tandoor-recipes-failing-test/default.nix
Bruno BELANYI 473be47b29 overlays: add 'tandoor-recipes-failing-test'
Since it's currently broken on the unstable channel, I am pre-emptively
fixing it so that I can bump my flake inputs.
2024-02-04 00:01:10 +01:00

10 lines
215 B
Nix

_self: super:
{
tandoor-recipes = super.tandoor-recipes.overridePythonAttrs (oa: {
disabledTests = (oa.disabledTests or [ ]) ++ [
"test_search_count"
"test_url_import_regex_replace"
];
});
}