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
.about("UNIMPLEMENTED. Prepares from submission and solution project for which the tests can be run in sandbox.")
82
+
.about("Prepares from submission and solution project for which the tests can be run in sandbox.")
83
83
.arg(Arg::with_name("submission-path")
84
84
.help("Path to the zip archive to be submitted.")
85
85
.long("submission-path")
86
86
.required(true)
87
+
.takes_value(true))
88
+
.arg(Arg::with_name("output-path")
89
+
.help("Path to the resulting archive.")
90
+
.long("output-path")
91
+
.required(true)
92
+
.takes_value(true))
93
+
.arg(Arg::with_name("tmc-param")
94
+
.help("A key-value pair in the form key=value to be written into .tmcparams. If multiple pairs with the same key are given, the values are interpreted as an array.")
95
+
.long("tmc-param")
96
+
.takes_value(true)
97
+
.multiple(true))
98
+
.arg(Arg::with_name("clone-path")
99
+
.help("Path to exercise's clone path, where the unmodified test files will be copied from.")
100
+
.long("clone-path")
101
+
.takes_value(true)
102
+
.required(true))
103
+
.arg(Arg::with_name("output-zip")
104
+
.help("Packages the submission into a zip archive instead of a tar.")
105
+
.long("output-zip"))
106
+
.arg(Arg::with_name("top-level-dir-name")
107
+
.help("If given, the contents in the resulting archive will be nested inside a directory with this name.")
108
+
.long("top-level-dir-name")
109
+
.takes_value(true))
110
+
.arg(Arg::with_name("stub-zip-path")
111
+
.help("If given, the tests will be copied from the stub zip instead, effectively ignoring hidden tests.")
0 commit comments