fix test executability

This commit is contained in:
David Arnold 2021-04-28 13:43:24 -05:00
parent 050c9f2759
commit 7a93fdce23
No known key found for this signature in database
GPG key ID: 6D6A936E69C59D08
6 changed files with 27 additions and 25 deletions

View file

@ -100,10 +100,12 @@ let
networking.primaryIPAddress = mkForce "192.168.1.1";
};
testScript = ''
startAll;
skipLint = true;
$kube->waitUntilSucceeds("kubectl get node kube.my.xzy | grep -w Ready");
testScript = ''
start_all()
kube.wait_until_succeeds("kubectl get node kube.my.xzy | grep -w Ready")
${testScript}
'';