Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix double namespace creation in OCR soak tests #13696

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions integration-tests/soak/ocr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,6 @@ func executeOCRSoakTest(t *testing.T, test *testsetups.OCRSoakTest, config *tc.T
require.NoError(t, err, "Error creating seth client")
}

if !test.Interrupted() {
test.DeployEnvironment(config)
}
l.Info().Str("test", t.Name()).Msg("Starting OCR soak test")
if !test.Interrupted() {
test.DeployEnvironment(config)
Expand Down
5 changes: 5 additions & 0 deletions integration-tests/testconfig/configs_embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ import "embed"

//go:embed default.toml
//go:embed automation/automation.toml
//go:embed forwarder_ocr/forwarder_ocr.toml
//go:embed forwarder_ocr2/forwarder_ocr2.toml
//go:embed functions/functions.toml
//go:embed keeper/keeper.toml
//go:embed log_poller/log_poller.toml
//go:embed node/node.toml
//go:embed ocr/ocr.toml
//go:embed ocr2/ocr2.toml
//go:embed vrf/vrf.toml
//go:embed vrfv2/vrfv2.toml
//go:embed ocr2vrf/ocr2vrf.toml
//go:embed vrfv2plus/vrfv2plus.toml
var embeddedConfigsFs embed.FS

Expand Down
Loading