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.
This commit is contained in:
Bruno BELANYI 2024-02-03 23:54:03 +01:00
parent 05cf04a11f
commit 473be47b29
1 changed files with 9 additions and 0 deletions

View File

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