Modify E2E and perf test result output directory.

Add LongTime label to more E2E cases.

Signed-off-by: Xun Jiang <xun.jiang@broadcom.com>
e2e_modification
Xun Jiang 2024-08-20 10:49:56 +08:00
parent 6c3988e462
commit af62dd4b3e
3 changed files with 6 additions and 5 deletions
changelogs/unreleased

View File

@ -0,0 +1 @@
Modify E2E and perf test report generated directory

View File

@ -167,7 +167,7 @@ run-e2e: ginkgo
(echo "Cloud provider for target cloud/plugin provider is required, please rerun with CLOUD_PROVIDER=<aws,azure,kind,vsphere>"; exit 1)
@$(GINKGO) run \
-v \
--junit-report report.xml \
--junit-report e2e/report.xml \
--label-filter="$(GINKGO_LABELS)" \
--timeout=5h \
./e2e \
@ -207,7 +207,7 @@ run-perf: ginkgo
(echo "Cloud provider for target cloud/plugin provider is required, please rerun with CLOUD_PROVIDER=<aws,azure,kind,vsphere>"; exit 1)
@$(GINKGO) run \
-v \
--junit-report report.xml \
--junit-report perf/report.xml \
--label-filter="$(GINKGO_LABELS)" \
--timeout=5h \
./perf \

View File

@ -113,7 +113,7 @@ func init() {
// cases can be executed as expected successful result.
var _ = Describe("Velero tests with various CRD API group versions",
Label("APIGroup", "APIVersion", "SKIP_KIND"), APIGroupVersionsTest)
Label("APIGroup", "APIVersion", "SKIP_KIND", "LongTime"), APIGroupVersionsTest)
var _ = Describe("CRD of apiextentions v1beta1 should be B/R successfully from cluster(k8s version < 1.22) to cluster(k8s version >= 1.22)",
Label("APIGroup", "APIExtensions", "SKIP_KIND"), APIExtensionsVersionsTest)
@ -197,9 +197,9 @@ var _ = Describe("Backups in object storage are synced to a new Velero and delet
var _ = Describe("Backup will be created periodically by schedule defined by a Cron expression",
Label("Schedule", "BR", "Pause", "LongTime"), ScheduleBackupTest)
var _ = Describe("Backup resources should follow the specific order in schedule",
Label("Schedule", "OrderedResources"), ScheduleOrderedResources)
Label("Schedule", "OrderedResources", "LongTime"), ScheduleOrderedResources)
var _ = Describe("Schedule controller wouldn't create a new backup when it still has pending or InProgress backup",
Label("Schedule", "BackupCreation", "SKIP_KIND"), ScheduleBackupCreationTest)
Label("Schedule", "BackupCreation", "SKIP_KIND", "LongTime"), ScheduleBackupCreationTest)
var _ = Describe("Velero test on ssr object when controller namespace mix-ups",
Label("PrivilegesMgmt", "SSR"), SSRTest)