remove parallel
remove parallel to stabilize ci/cd
This commit is contained in:
@@ -24,7 +24,6 @@ type Config struct {
|
||||
|
||||
func TestProcess(t *testing.T) {
|
||||
t.Run("basic upload", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &Config{}
|
||||
|
||||
net, clean := test.CreateFullNetwork(t, t.Context(), cfg)
|
||||
@@ -95,7 +94,6 @@ func TestProcess(t *testing.T) {
|
||||
assert.EqualExportedValues(t, expectedDoc, *docRes.JSON200)
|
||||
})
|
||||
t.Run("update config", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &Config{}
|
||||
|
||||
net, clean := test.CreateFullNetwork(t, t.Context(), cfg)
|
||||
@@ -176,7 +174,6 @@ func TestProcess(t *testing.T) {
|
||||
assert.EqualExportedValues(t, expectedDoc, *docRes.JSON200)
|
||||
})
|
||||
t.Run("test multiple versions", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &Config{}
|
||||
|
||||
net, clean := test.CreateFullNetwork(t, t.Context(), cfg)
|
||||
|
||||
@@ -13,7 +13,6 @@ import (
|
||||
)
|
||||
|
||||
func TestQueryAPIAccessories(t *testing.T) {
|
||||
t.Parallel()
|
||||
ctx := t.Context()
|
||||
|
||||
cfg := &Config{}
|
||||
|
||||
@@ -12,7 +12,6 @@ import (
|
||||
)
|
||||
|
||||
func TestClient(t *testing.T) {
|
||||
t.Parallel()
|
||||
ctx := t.Context()
|
||||
|
||||
cfg := &Config{}
|
||||
|
||||
@@ -26,7 +26,6 @@ type Config struct {
|
||||
}
|
||||
|
||||
func TestCollectorService(t *testing.T) {
|
||||
t.Parallel()
|
||||
ctx := t.Context()
|
||||
|
||||
cfg := &Config{}
|
||||
|
||||
@@ -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{}
|
||||
|
||||
Reference in New Issue
Block a user