Skip to content

Commit

Permalink
test: actually get os env
Browse files Browse the repository at this point in the history
  • Loading branch information
ernado committed Dec 9, 2024
1 parent 79f07c1 commit 6e452c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func TestIntegration(t *testing.T) {
if _, ok := os.LookupEnv("GITHUB_TOKEN"); !ok {
t.Skip("no token")
}
if ok, _ := strconv.ParseBool("E2E"); !ok {
if ok, _ := strconv.ParseBool(os.Getenv("E2E")); !ok {
t.Skip("E2E=1 not set")
}

Expand Down

0 comments on commit 6e452c6

Please sign in to comment.