remove parallel
remove parallel to stabilize ci/cd
This commit is contained in:
@@ -26,7 +26,6 @@ type ClientSyncConfig struct {
|
||||
}
|
||||
|
||||
func TestClientSyncRunner(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ClientSyncConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
acfg := test.CreateAWSContainer(t, cfg)
|
||||
|
||||
@@ -31,7 +31,6 @@ type DocCleanConfig struct {
|
||||
}
|
||||
|
||||
func TestDocCleanRunner(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &DocCleanConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
acfg := test.CreateAWSContainer(t, cfg)
|
||||
|
||||
@@ -26,7 +26,6 @@ type DocInitConfig struct {
|
||||
}
|
||||
|
||||
func TestDocInitRunner(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &DocInitConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
acfg := test.CreateAWSContainer(t, cfg)
|
||||
|
||||
@@ -30,7 +30,6 @@ type DocSyncConfig struct {
|
||||
}
|
||||
|
||||
func TestDocSyncRunner(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &DocSyncConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
acfg := test.CreateAWSContainer(t, cfg)
|
||||
|
||||
@@ -37,7 +37,6 @@ type DocTextConfig struct {
|
||||
}
|
||||
|
||||
func TestDocTextRunner(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &DocTextConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
acfg := test.CreateAWSContainer(t, cfg)
|
||||
|
||||
@@ -18,7 +18,6 @@ import (
|
||||
)
|
||||
|
||||
func TestCreateClient(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -47,7 +46,6 @@ func TestCreateClient(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestGetClient(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -81,7 +79,6 @@ func TestGetClient(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestUpdateClient(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
|
||||
@@ -15,7 +15,6 @@ import (
|
||||
)
|
||||
|
||||
func TestSetCollector(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -60,7 +59,6 @@ func TestSetCollector(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestGetCollectorByClientId(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
|
||||
@@ -17,7 +17,6 @@ import (
|
||||
)
|
||||
|
||||
func TestUploadDocument(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -57,7 +56,6 @@ func TestUploadDocument(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestListDocumentsByClientId(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -90,7 +88,6 @@ func TestListDocumentsByClientId(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestGetDocument(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
|
||||
@@ -41,7 +41,6 @@ import (
|
||||
)
|
||||
|
||||
func TestCreateQuery(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -62,7 +61,6 @@ func TestCreateQuery(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestListQueries(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -91,7 +89,6 @@ func TestListQueries(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestGetQuery(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -116,7 +113,6 @@ func TestGetQuery(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestUpdateQuery(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
@@ -230,7 +226,6 @@ func createDocumentWithText(t testing.TB, cfg *ControllerConfig, clientId string
|
||||
}
|
||||
|
||||
func TestTestQuery(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
|
||||
@@ -13,7 +13,6 @@ import (
|
||||
)
|
||||
|
||||
func TestGetClientStatus(t *testing.T) {
|
||||
t.Parallel()
|
||||
cfg := &ControllerConfig{}
|
||||
test.CreateDB(t, cfg)
|
||||
initializeTestConfig(t, cfg)
|
||||
|
||||
Reference in New Issue
Block a user