nix-config/overlays/tandoor-recipes-failing-test/default.nix

10 lines
215 B
Nix
Raw Normal View History

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