Skip to content

Commit 96dc9b4

Browse files
committed
fix: reduce e2e test execution by parallel tests
Signed-off-by: Peter Wilcsinszky <[email protected]>
1 parent 3f35c39 commit 96dc9b4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

e2e/syslog-ng-aggregator/syslog_ng_aggregator_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func init() {
6464
}
6565

6666
func TestSyslogNGIsRunningAndForwardingLogs(t *testing.T) {
67+
t.Parallel()
6768
ns := "test"
6869
common.WithCluster("syslog-ng-1", t, func(t *testing.T, c common.Cluster) {
6970
setup.LoggingOperator(t, c, setup.LoggingOperatorOptionFunc(func(options *setup.LoggingOperatorOptions) {

e2e/volumedrain/volumedrain_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ func init() {
6262
}
6363

6464
func TestVolumeDrain_Downscale(t *testing.T) {
65+
t.Parallel()
6566
ns := "testing-1"
6667
common.WithCluster("drain", t, func(t *testing.T, c common.Cluster) {
6768
setup.LoggingOperator(t, c, setup.LoggingOperatorOptionFunc(func(options *setup.LoggingOperatorOptions) {
@@ -226,8 +227,9 @@ func TestVolumeDrain_Downscale(t *testing.T) {
226227
}
227228

228229
func TestVolumeDrain_Downscale_DeleteVolume(t *testing.T) {
230+
t.Parallel()
229231
ns := "testing-2"
230-
common.WithCluster("drain", t, func(t *testing.T, c common.Cluster) {
232+
common.WithCluster("drain-2", t, func(t *testing.T, c common.Cluster) {
231233
setup.LoggingOperator(t, c, setup.LoggingOperatorOptionFunc(func(options *setup.LoggingOperatorOptions) {
232234
options.Config.DisableWebhook = true
233235
options.Config.Namespace = ns

0 commit comments

Comments
 (0)