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.
master
Maximilian Bosch 2021-05-08 22:59:12 +02:00 committed by aszlig
parent 774aba102a
commit fc76a44d0f
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,5 @@ in {
};
# This test only consists of evaluating the test machine
testScript = "";
testScript = "pass";
})