@@ -21,6 +21,7 @@ val usageMessage = """
21
21
|The <validation-command> should be one of:
22
22
|* compile <arg1> <arg2> ...
23
23
|* run <arg1> <arg2> ...
24
+ |* test <arg1> <arg2> ...
24
25
|* <custom-validation-script-path>
25
26
|
26
27
|The arguments for 'compile' and 'run' should be paths to the source file(s) and optionally additional options passed directly to scala-cli.
@@ -101,20 +102,24 @@ object ScriptOptions:
101
102
enum ValidationCommand :
102
103
case Compile (args : Seq [String ])
103
104
case Run (args : Seq [String ])
105
+ case Test (args : Seq [String ])
104
106
case CustomValidationScript (scriptFile : File )
105
107
106
108
def validationScript : File = this match
107
109
case Compile (args) =>
108
110
ValidationScript .tmpScalaCliScript(command = " compile" , args)
109
111
case Run (args) =>
110
112
ValidationScript .tmpScalaCliScript(command = " run" , args)
113
+ case Test (args) =>
114
+ ValidationScript .tmpScalaCliScript(command = " test" , args)
111
115
case CustomValidationScript (scriptFile) =>
112
116
ValidationScript .copiedFrom(scriptFile)
113
117
114
118
object ValidationCommand :
115
119
def fromArgs (args : Seq [String ]) = args match
116
120
case Seq (" compile" , commandArgs* ) => Compile (commandArgs)
117
121
case Seq (" run" , commandArgs* ) => Run (commandArgs)
122
+ case Seq (" test" , commandArgs* ) => Test (commandArgs)
118
123
case Seq (path) => CustomValidationScript (new File (path))
119
124
120
125
0 commit comments