Skip to content

Commit

Permalink
propagate CONFIG_OVERRIDE to test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Dec 18, 2023
1 parent 0dacd3e commit 674023e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration-tests/load/automationv2_1/automationv2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ func TestLogTrigger(t *testing.T) {
key = "GRAFANA_DASHBOARD_URL"
err = os.Setenv(fmt.Sprintf("TEST_%s", key), getEnv(key, ""))
require.NoError(t, err, "failed to set the environment variable GRAFANA_DASHBOARD_URL for remote runner")

key = "CONFIG_OVERRIDE"
err = os.Setenv(fmt.Sprintf("TEST_%s", key), os.Getenv(key))
require.NoError(t, err, "failed to set the environment variable CONFIG_OVERRIDE for remote runner")
}

testEnvironment.
Expand Down

0 comments on commit 674023e

Please sign in to comment.