aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/hpkg/test/default.nix
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-02 13:42:49 +0900
committerOphestra <cat@gensokyo.uk>2026-03-02 13:42:49 +0900
commitc5089cad7883d0157ca5339ed6e43fb18ad2c838 (patch)
tree6170e08ba1541d62b7ceee22f3c0a48ec4b0a7de /cmd/hpkg/test/default.nix
parentc83905f31194541892e99d5a57b7b974b6a601d2 (diff)
cmd: remove hpkg
This proof-of-concept was abandoned long ago. Its test suite is flaky, heavy on I/O and does not increase test coverage. This change fully removes hpkg and supporting code. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/hpkg/test/default.nix')
-rw-r--r--cmd/hpkg/test/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/cmd/hpkg/test/default.nix b/cmd/hpkg/test/default.nix
deleted file mode 100644
index 85d76188..00000000
--- a/cmd/hpkg/test/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- testers,
- callPackage,
-
- system,
- self,
-}:
-let
- buildPackage = self.buildPackage.${system};
-in
-testers.nixosTest {
- name = "hpkg";
- nodes.machine = {
- environment.etc = {
- "foot.pkg".source = callPackage ./foot.nix { inherit buildPackage; };
- };
-
- imports = [
- ./configuration.nix
-
- self.nixosModules.hakurei
- self.inputs.home-manager.nixosModules.home-manager
- ];
- };
-
- # adapted from nixos sway integration tests
-
- # testScriptWithTypes:49: error: Cannot call function of unknown type
- # (machine.succeed if succeed else machine.execute)(
- # ^
- # Found 1 error in 1 file (checked 1 source file)
- skipTypeCheck = true;
- testScript = builtins.readFile ./test.py;
-}