Skip to content
Open
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
14 changes: 7 additions & 7 deletions query_runs_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func createQueryRun(t *testing.T, client *Client, workspace *Workspace) *QueryRu
}

func TestQueryRunsList_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -97,7 +97,7 @@ func TestQueryRunsList_RunDependent(t *testing.T) {
}

func TestQueryRunsCreate_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -180,7 +180,7 @@ func TestQueryRunsCreate_RunDependent(t *testing.T) {
}

func TestQueryRunsRead_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -208,7 +208,7 @@ func TestQueryRunsRead_RunDependent(t *testing.T) {
}

func TestQueryRunsReadWithOptions_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand All @@ -234,7 +234,7 @@ func TestQueryRunsReadWithOptions_RunDependent(t *testing.T) {
func TestQueryRunsCancel_RunDependent(t *testing.T) {
t.Skip("Cancel not yet implemented")

skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand Down Expand Up @@ -266,7 +266,7 @@ func TestQueryRunsCancel_RunDependent(t *testing.T) {
}

func TestQueryRunsLogs_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand All @@ -288,7 +288,7 @@ func TestQueryRunsLogs_RunDependent(t *testing.T) {
}

func TestQueryRunsForceCancel_RunDependent(t *testing.T) {
skipUnlessBeta(t)
skipIfEnterprise(t)
client := testClient(t)
ctx := context.Background()

Expand Down
Loading