From 473be47b29843ae6125296bbf2ea7ea36acc110b Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 3 Feb 2024 23:54:03 +0100 Subject: [PATCH] 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. --- overlays/tandoor-recipes-failing-test/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 overlays/tandoor-recipes-failing-test/default.nix diff --git a/overlays/tandoor-recipes-failing-test/default.nix b/overlays/tandoor-recipes-failing-test/default.nix new file mode 100644 index 0000000..43755ac --- /dev/null +++ b/overlays/tandoor-recipes-failing-test/default.nix @@ -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" + ]; + }); +}