Skip to content

Commit f3dad2b

Browse files
remove INTEGRATION variable required for running tests
Signed-off-by: Alexandre Lamarre <alexandre.lamarre@suse.com>
1 parent efa2bcd commit f3dad2b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

internal/test/generic.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,6 @@ var (
117117
)
118118

119119
func SetupOnce() {
120-
if os.Getenv("INTEGRATION") != "true" {
121-
Skip("Skipping integration tests, use export INTEGRATION=true to run them")
122-
}
123120
Expect(env.Parse(&ts)).To(Succeed(), "Could not parse test spec from environment variables")
124121
Expect(ts.Validate()).To(Succeed(), "Invalid input e2e test spec")
125122
logrus.SetLevel(logrus.DebugLevel)
@@ -140,9 +137,6 @@ func SetupOnce() {
140137
}
141138

142139
func Setup() {
143-
if os.Getenv("INTEGRATION") != "true" {
144-
Skip("Skipping integration tests, use export INTEGRATION=true to run them")
145-
}
146140
Expect(env.Parse(&ts)).To(Succeed(), "Could not parse test spec from environment variables")
147141
Expect(ts.Validate()).To(Succeed(), "Invalid input e2e test spec")
148142
ctxCa, ca := context.WithCancel(context.Background())

0 commit comments

Comments
 (0)