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 default automation test config #13314

Merged
merged 2 commits into from
May 24, 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
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ Test Duration: %s`
if err != nil {
l.Error().Err(err).Msg("Error increasing TTL of namespace")
}
} else if chainClient.Cfg.IsSimulatedNetwork() || *loadedTestConfig.Automation.General.RemoveNamespace {
} else if chainClient.Cfg.IsSimulatedNetwork() && *loadedTestConfig.Automation.General.RemoveNamespace {
err := testEnvironment.Client.RemoveNamespace(testEnvironment.Cfg.Namespace)
if err != nil {
l.Error().Err(err).Msg("Error removing namespace")
Expand Down
6 changes: 4 additions & 2 deletions integration-tests/testconfig/automation/automation.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,15 @@ block_time=1
spec_type="minimum"
chainlink_node_log_level="info"
use_prometheus=false
remove_namespace = true

# load test specific overrides
[Load.Seth]
ephemeral_addresses_number = 100
root_key_funds_buffer = 1_000_000

[Load.Common]
chainlink_node_funding = 100
remove_namespace = true
chainlink_node_funding = 1000

[Load.Automation]
[Load.Automation.General]
Expand All @@ -119,6 +120,7 @@ block_time=1
spec_type="minimum"
chainlink_node_log_level="info"
use_prometheus=false
remove_namespace = true

[Load.Automation.DataStreams]
enabled=false
Expand Down
Loading