diff --git a/.github/workflows/automation-ondemand-tests.yml b/.github/workflows/automation-ondemand-tests.yml index ba0341314a1..11264750683 100644 --- a/.github/workflows/automation-ondemand-tests.yml +++ b/.github/workflows/automation-ondemand-tests.yml @@ -282,7 +282,7 @@ jobs: echo ::add-mask::$BASE64_CONFIG_OVERRIDE echo "BASE64_CONFIG_OVERRIDE=$BASE64_CONFIG_OVERRIDE" >> $GITHUB_ENV - name: Run Tests - uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@7e83c2a815a9275eea1ffd0be9fa2f19656c1368 # v2.3.21 + uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@54e3fc110916259183d8f50c012aa98f2d2a6718 # v2.3.21 if: ${{ matrix.tests.enabled == true }} env: TEST_SUITE: ${{ matrix.tests.suite }} diff --git a/integration-tests/reorg/automation_reorg_test.go b/integration-tests/reorg/automation_reorg_test.go index 2a2350e1956..5e6f84c410f 100644 --- a/integration-tests/reorg/automation_reorg_test.go +++ b/integration-tests/reorg/automation_reorg_test.go @@ -4,6 +4,7 @@ package reorg import ( "fmt" "math/big" + "os" "regexp" "strconv" "testing" @@ -84,6 +85,15 @@ var ( * Upkeeps are expected to be performed during the reorg. */ func TestAutomationReorg(t *testing.T) { + logger := logging.GetTestLogger(t) + + tId := os.Getenv("LOKI_TENANT_ID") + if tId != "" { + logger.Info().Msg("LOKI_TENANT_ID env var found and non empty") + } else { + logger.Info().Msg("LOKI_TENANT_ID env var not found or empty") + } + c, err := tc.GetConfig([]string{"Reorg"}, tc.Automation) require.NoError(t, err, "Error getting config") diff --git a/integration-tests/testconfig/testconfig.go b/integration-tests/testconfig/testconfig.go index ea07cdd5496..3eab2946b6e 100644 --- a/integration-tests/testconfig/testconfig.go +++ b/integration-tests/testconfig/testconfig.go @@ -383,6 +383,13 @@ func GetConfig(configurationNames []string, product Product) (TestConfig, error) return TestConfig{}, errors.Wrapf(err, "error reading test config values from env vars") } + tId := os.Getenv("LOKI_TENANT_ID") + if tId != "" { + logger.Info().Msg("LOKI_TENANT_ID env var found and non empty") + } else { + logger.Info().Msg("LOKI_TENANT_ID env var not found or empty") + } + logger.Debug().Msg("Validating test config") err = testConfig.Validate() if err != nil {