Skip to content

Commit

Permalink
Merge pull request #8129 from vmware-tanzu/e2e_modification
Browse files Browse the repository at this point in the history
Modify E2E and perf test report generated directory
  • Loading branch information
blackpiglet authored Aug 20, 2024
2 parents 6e65c73 + af62dd4 commit ec6090b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelogs/unreleased/8129-blackpiglet
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Modify E2E and perf test report generated directory
4 changes: 2 additions & 2 deletions test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/e2e_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ec6090b

Please sign in to comment.