Skip to content

Commit

Permalink
move all e2e tests to singlek8s package
Browse files Browse the repository at this point in the history
All of the e2e tests we currently have are written for a single
Kubernetes cluster. This commit moves them into a `singlek8s` package.

Signed-off-by: Ryotaro Banno <ryotaro.banno@gmail.com>
  • Loading branch information
ushitora-anqou committed Aug 29, 2024
1 parent 733083c commit bfe05cf
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ do_test: $(GINKGO)
PATH=${PATH} \
E2ETEST=1 \
KUBECTL=$(KUBECTL) \
$(GINKGO) --fail-fast -v $(GINKGO_FLAGS) .
$(GINKGO) --fail-fast -v $(GINKGO_FLAGS) singlek8s
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package e2e
package singlek8s

import (
"errors"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package e2e
package singlek8s

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package e2e
package singlek8s

import (
"encoding/json"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package e2e
package singlek8s

import (
_ "embed"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/e2e/util.go → test/e2e/singlek8s/util.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package e2e
package singlek8s

import (
"bytes"
Expand Down

0 comments on commit bfe05cf

Please sign in to comment.