remove parallel

remove parallel to stabilize ci/cd
This commit is contained in:
jay brown
2025-07-22 10:29:44 -07:00
parent fe661e7b72
commit a9d81a1094
20 changed files with 1 additions and 40 deletions
-4
View File
@@ -15,7 +15,6 @@ import (
func TestQueryAPI(t *testing.T) {
t.Run("list no queries", func(t *testing.T) {
t.Parallel()
cfg := &Config{}
c, cleanup := test.CreateAPINetworkWithParams(t, cfg, test.QueryAPI, &test.FullDependenciesParams{
@@ -32,7 +31,6 @@ func TestQueryAPI(t *testing.T) {
assert.Len(t, queriesRes.JSON200.Queries, 0)
})
t.Run("create and get query", func(t *testing.T) {
t.Parallel()
ctx := t.Context()
cfg := &Config{}
@@ -71,7 +69,6 @@ func TestQueryAPI(t *testing.T) {
assert.Equal(t, jcfg, *queriesRes.JSON200.Queries[0].Config)
})
t.Run("update query", func(t *testing.T) {
t.Parallel()
ctx := t.Context()
cfg := &Config{}
@@ -116,7 +113,6 @@ func TestQueryAPI(t *testing.T) {
assert.Nil(t, queryRes.JSON200.RequiredQueries)
})
t.Run("multiple dependent queries", func(t *testing.T) {
t.Parallel()
ctx := t.Context()
cfg := &Config{}