From d214b36911d854f0982ea2f6beef645a97e18fe6 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Tue, 18 Jan 2022 22:18:00 +1200 Subject: [PATCH] Inherit test cases from nixpkgs These packages uses poetry2nix and we can use them for regression testing. --- tests/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/default.nix b/tests/default.nix index 6a9675f..04b8370 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -65,6 +65,9 @@ builtins.removeAttrs aiopath = callTest ./aiopath { }; fetched-projectdir = callTest ./fetched-projectdir { }; + # Inherit test cases from nixpkgs + inherit (pkgs) nixops nixopsUnstable rmfuse; + # Test building poetry inherit poetry;