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 92ee790 commit 8d6f783Copy full SHA for 8d6f783
pkg/tests/runner_test.go
@@ -727,6 +727,9 @@ func TestGlobalErr(t *testing.T) {
727
}
728
729
func TestContextArg(t *testing.T) {
730
+ if runtime.GOOS == "windows" {
731
+ t.Skip()
732
+ }
733
runner := tester.NewRunner(t)
734
x, err := runner.Run("", `{
735
"file": "foo.db"
pkg/tests/testdata/TestContextArg/test.gpt
@@ -8,5 +8,5 @@ This is from tool
8
name: fromcontext
9
args: first: an arg
10
11
-#!sys.echo
12
-this is from context -- ${first}
+#!/bin/bash
+echo this is from context -- ${first}
0 commit comments