summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-05-08 22:59:12 +0200
committeraszlig <aszlig@nix.build>2021-05-09 02:28:11 +0200
commitfc76a44d0f9cc43a496b0bb4afb5b628b8fb250e (patch)
treed985646e99d30815b2ba78faaef6181fd51b62c1 /nixos
parent774aba102a842c60c635fdc583ba871cf1dea8cf (diff)
downloadnixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar.gz
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar.bz2
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar.lz
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar.xz
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.tar.zst
nixpkgs-fc76a44d0f9cc43a496b0bb4afb5b628b8fb250e.zip
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.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/containers-custom-pkgs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/containers-custom-pkgs.nix b/nixos/tests/containers-custom-pkgs.nix
index c050e49bc29..1627a2c70c3 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";
 })