We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71a300c commit 032d4ceCopy full SHA for 032d4ce
internal/command/e2etest/terraform_query_test.go
@@ -25,6 +25,15 @@ import (
25
)
26
27
func TestUnmanagedQuery(t *testing.T) {
28
+ if !canRunGoBuild {
29
+ // We're running in a separate-build-then-run context, so we can't
30
+ // currently execute this test which depends on being able to build
31
+ // new executable at runtime.
32
+ //
33
+ // (See the comment on canRunGoBuild's declaration for more information.)
34
+ t.Skip("can't run without building a new provider executable")
35
+ }
36
+
37
t.Parallel()
38
39
tests := []struct {
0 commit comments