We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8497f14 commit c862b97Copy full SHA for c862b97
1 file changed
nixos/tests/lorri/default.nix
@@ -17,12 +17,12 @@ import ../make-test-python.nix {
17
18
# Start the daemon and wait until it is ready
19
machine.execute("lorri daemon > lorri.stdout 2> lorri.stderr &")
20
- machine.wait_until_succeeds("grep --fixed-strings 'ready' lorri.stdout")
+ machine.wait_until_succeeds("grep --fixed-strings 'ready' lorri.stderr")
21
22
# Ping the daemon
23
- machine.succeed("lorri internal ping shell.nix")
+ machine.succeed("lorri internal ping --shell-file shell.nix")
24
25
# Wait for the daemon to finish the build
26
- machine.wait_until_succeeds("grep --fixed-strings 'Completed' lorri.stdout")
+ machine.wait_until_succeeds("grep --fixed-strings 'Completed' lorri.stderr")
27
'';
28
}
0 commit comments