Skip to content
Open
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
42 changes: 8 additions & 34 deletions scala/private/phases/phase_test_environment.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,11 @@
# https://bazel.build/rules/lib/testing#TestEnvironment

def phase_test_environment(ctx, p):
test_env = ctx.attr.env
inherited_environment = ctx.attr.env_inherit

if inherited_environment and test_env:
return struct(
external_providers = {
"TestingEnvironment": testing.TestEnvironment(
test_env,
inherited_environment,
),
},
)

elif test_env:
return struct(
external_providers = {
"TestingEnvironment": testing.TestEnvironment(
test_env,
),
},
)

elif inherited_environment:
return struct(
external_providers = {
"TestingEnvironment": testing.TestEnvironment(
{},
inherited_environment,
),
},
)

else:
return struct()
return struct(
external_providers = {
"TestingEnvironment": testing.TestEnvironment(
{k: ctx.expand_location(v, ctx.attr.data) for k, v in ctx.attr.env.items()},
ctx.attr.env_inherit,
),
},
)