about summary refs log tree commit diff
path: root/nixos/tests/sway.nix
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-06-04 13:55:01 +0800
committerBobby Rong <rjl931189261@126.com>2022-06-04 13:55:01 +0800
commit41cd411c03541663a59c95b1ecee598ee6d3d90c (patch)
treed3e3325fc21ae82023f4fc4ccdaa5664141813b5 /nixos/tests/sway.nix
parent906b0b2e873d216881bb146c3353e76f1da132c2 (diff)
nixos/tests/sway: skip type check for now
Diffstat (limited to 'nixos/tests/sway.nix')
-rw-r--r--nixos/tests/sway.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/tests/sway.nix b/nixos/tests/sway.nix
index 8f95f2a030d1b..52e2c7c99ec4b 100644
--- a/nixos/tests/sway.nix
+++ b/nixos/tests/sway.nix
@@ -4,6 +4,12 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
     maintainers = with lib.maintainers; [ primeos synthetica ];
   };
 
+  # 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;
+
   nodes.machine = { config, ... }: {
     # Automatically login on tty1 as a normal user:
     imports = [ ./common/user-account.nix ];