diff --git a/integration-tests/ccip-tests/Makefile b/integration-tests/ccip-tests/Makefile index 3a59f62659..3548eb63e2 100644 --- a/integration-tests/ccip-tests/Makefile +++ b/integration-tests/ccip-tests/Makefile @@ -16,7 +16,7 @@ set_config: @echo "export TEST_BASE64_CCIP_SECRETS_CONFIG=$$(base64 -i $(secret_toml))" >> ./testconfig/override/.env -# example usage: make test_load_ccip testimage=chainlink-ccip-tests:latest testname=TestLoadCCIPStableRequestTriggeringWithNetworkChaos override_toml=../testconfig/override/config.toml secret_toml=./testconfig/tomls/secrets.toml +# example usage: make test_load_ccip testimage=chainlink-ccip-tests:latest testname=TestLoadCCIPStableRPS override_toml=./testconfig/override/config.toml secret_toml=./testconfig/tomls/secrets.toml .PHONY: test_load_ccip test_load_ccip: set_config source ./testconfig/override/.env && \ diff --git a/integration-tests/ccip-tests/testconfig/tomls/ccip-crib.toml b/integration-tests/ccip-tests/testconfig/tomls/ccip-crib.toml index db3d1b8211..e05eb8343a 100644 --- a/integration-tests/ccip-tests/testconfig/tomls/ccip-crib.toml +++ b/integration-tests/ccip-tests/testconfig/tomls/ccip-crib.toml @@ -76,8 +76,8 @@ selected_networks = ['geth_1337', 'geth_2337'] [CCIP.Env.Network.EVMNetworks.geth_1337] evm_name = 'geth_1337' evm_chain_id = 1337 -evm_urls = ['ws://127.1.27.15:8546'] -evm_http_urls = ['http://127.1.27.15:8544'] +evm_urls = ['ws://127.1.27.6:8546'] +evm_http_urls = ['http://127.1.27.6:8544'] evm_keys = ['ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80'] evm_simulated = true client_implementation = 'Ethereum' @@ -91,8 +91,8 @@ evm_default_gas_limit = 6000000 [CCIP.Env.Network.EVMNetworks.geth_2337] evm_name = 'geth_2337' evm_chain_id = 2337 -evm_urls = ['ws://127.1.27.6:8546'] -evm_http_urls = ['http://127.1.27.6:8544'] +evm_urls = ['ws://127.1.27.5:8546'] +evm_http_urls = ['http://127.1.27.5:8544'] evm_keys = ['59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d'] evm_simulated = true client_implementation = 'Ethereum' @@ -155,7 +155,7 @@ ExistingDeployment = true LocalCluster = false TestRunName = 'crib-ani-load' TimeUnit = '1s' -TestDuration = '20m' +TestDuration = '1m' RequestPerUnitTime = [1] NodeFunding = 100.0 ExistingDeployment = true diff --git a/integration-tests/ccip-tests/testreporters/ccip.go b/integration-tests/ccip-tests/testreporters/ccip.go index 4c7718fb37..7f519445d5 100644 --- a/integration-tests/ccip-tests/testreporters/ccip.go +++ b/integration-tests/ccip-tests/testreporters/ccip.go @@ -12,6 +12,7 @@ import ( "github.com/rs/zerolog" "github.com/slack-go/slack" + "github.com/smartcontractkit/chainlink-testing-framework/k8s/config" "github.com/smartcontractkit/chainlink-testing-framework/testreporters"