From fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sat, 8 May 2021 22:59:12 +0200 Subject: [PATCH] nixosTests.containers-custom-pkgs: lint The new linter basically does def testScript # ... before calling `pyflakes`. As this test-script is empty, it would lead to a syntax-error unless `pass` is added. --- nixos/tests/containers-custom-pkgs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/containers-custom-pkgs.nix b/nixos/tests/containers-custom-pkgs.nix index c050e49bc29d..1627a2c70c3c 100644 --- a/nixos/tests/containers-custom-pkgs.nix +++ b/nixos/tests/containers-custom-pkgs.nix @@ -30,5 +30,5 @@ in { }; # This test only consists of evaluating the test machine - testScript = ""; + testScript = "pass"; })