Skip to content

[TESTING] Revert "Skip query e2e test when we cannot build at runtime" #37310

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions internal/command/e2etest/terraform_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,10 @@ import (
)

func TestUnmanagedQuery(t *testing.T) {
if !canRunGoBuild {
// We're running in a separate-build-then-run context, so we can't
// currently execute this test which depends on being able to build
// new executable at runtime.
//
// (See the comment on canRunGoBuild's declaration for more information.)
t.Skip("can't run without building a new provider executable")
}

t.Parallel()

t.Logf("Running TestUnmanagedQuery test")

tests := []struct {
name string
protocolVersion int
Expand Down
Loading