1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-26 18:20:59 +00:00

tests: add node and python in TestStep_ShellCommand

This commit is contained in:
Maxim Slipenko 2025-04-20 08:31:25 +03:00
parent e97623bbaf
commit 230f450bc2

View file

@ -510,6 +510,8 @@ func TestStep_ShellCommand(t *testing.T) {
{"pwsh -v '. {0}'", "pwsh -v '. {0}'"},
{"pwsh", "pwsh -command . '{0}'"},
{"powershell", "powershell -command . '{0}'"},
{"node", "node {0}"},
{"python", "python {0}"},
}
for _, tt := range tests {
t.Run(tt.shell, func(t *testing.T) {