1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

test: Do not leak step env in composite (#1585)

* test: Do not leak step env in composite

To prevent merging regressions.

* Update runner_test.go
This commit is contained in:
ChristopherHX 2023-01-29 15:47:56 +01:00 committed by GitHub
parent 97fb7ba580
commit 4dd6cc3986
2 changed files with 21 additions and 1 deletions

View file

@ -203,6 +203,7 @@ func TestRunEvent(t *testing.T) {
// {"testdata", "issue-228", "push", "", platforms, }, // TODO [igni]: Remove this once everything passes
{"../model/testdata", "container-volumes", "push", "", platforms, secrets},
{workdir, "path-handling", "push", "", platforms, secrets},
{workdir, "do-not-leak-step-env-in-composite", "push", "", platforms, secrets},
}
for _, table := range tables {
@ -295,12 +296,14 @@ func TestRunEventHostEnvironment(t *testing.T) {
}...)
} else {
platforms := map[string]string{
"self-hosted": "-self-hosted",
"self-hosted": "-self-hosted",
"ubuntu-latest": "-self-hosted",
}
tables = append(tables, []TestJobFileInfo{
{workdir, "nix-prepend-path", "push", "", platforms, secrets},
{workdir, "inputs-via-env-context", "push", "", platforms, secrets},
{workdir, "do-not-leak-step-env-in-composite", "push", "", platforms, secrets},
}...)
}