You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/interu/src/cli.rs
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,7 @@ pub struct Cli {
23
23
option,
24
24
short = 'o',
25
25
long = "output",
26
-
description = "write configuration key=value pairs separated by newlines to file
27
-
Useful for CI tools which give a file to write env vars and outputs to which are used in subsequent steps"
26
+
description = "write configuration key=value pairs separated by newlines to file. Useful for CI tools which give a file to write env vars and outputs to which are used in subsequent steps"
28
27
)]
29
28
puboutput:Option<PathBuf>,
30
29
@@ -33,6 +32,19 @@ pub struct Cli {
33
32
#[argh(switch, short = 'q', long = "quiet")]
34
33
pubquiet:bool,
35
34
35
+
/// validate the beku test definition of the selected profile
36
+
#[argh(switch, long = "check-test-definitions")]
37
+
pubcheck_test_definitions:bool,
38
+
39
+
/// path to beku test-definition file [default = tests/test-definition.yaml]
0 commit comments