Skip to content

Commit

Permalink
e2e testing
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Sep 20, 2024
1 parent d19df93 commit 83e35c5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL = /bin/bash
TAG ?= $(shell git describe --exact-match 2>/dev/null)
COMMIT = $(shell git rev-parse --short=7 HEAD)$(shell [[ $$(git status --porcelain) = "" ]] || echo -dirty)
ARO_IMAGE_BASE = ${RP_IMAGE_ACR}.azurecr.io/aro
E2E_FLAGS ?= -test.v --ginkgo.v --ginkgo.timeout 180m --ginkgo.flake-attempts=2 --ginkgo.junit-report=e2e-report.xml
E2E_FLAGS ?= -test.v --ginkgo.vv --ginkgo.timeout 180m --ginkgo.flake-attempts=2 --ginkgo.junit-report=e2e-report.xml
E2E_LABEL ?= !smoke
GO_FLAGS ?= -tags=containers_image_openpgp,exclude_graphdriver_btrfs,exclude_graphdriver_devicemapper

Expand Down
3 changes: 0 additions & 3 deletions test/e2e/mimo_actuator.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"encoding/json"
"net/http"
"net/url"
"time"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
Expand Down Expand Up @@ -73,8 +72,6 @@ var _ = Describe("MIMO Actuator E2E Testing", func() {
http.MethodPut, "/admin"+clusterResourceID+"/maintenancemanifests",
url.Values{}, true, &admin.MaintenanceManifest{
MaintenanceSetID: mimo.OPERATOR_FLAGS_UPDATE_ID,
RunAfter: 1,
RunBefore: int(time.Now().Add(time.Hour).Unix()),
}, &out)
Expect(err).NotTo(HaveOccurred())
Expect(resp.StatusCode).To(Equal(http.StatusCreated))
Expand Down

0 comments on commit 83e35c5

Please sign in to comment.