@@ -940,7 +940,7 @@ def py_executable_base_impl(ctx, *, semantics, is_test, inherited_environment =
940
940
941
941
imports = collect_imports (ctx , semantics )
942
942
943
- runtime_details = _get_runtime_details (ctx , semantics )
943
+ runtime_details = _get_runtime_details (ctx , semantics , is_test )
944
944
if ctx .configuration .coverage_enabled :
945
945
extra_deps = semantics .get_coverage_deps (ctx , runtime_details )
946
946
else :
@@ -1016,7 +1016,6 @@ def py_executable_base_impl(ctx, *, semantics, is_test, inherited_environment =
1016
1016
inherited_environment = inherited_environment ,
1017
1017
semantics = semantics ,
1018
1018
output_groups = exec_result .output_groups ,
1019
- is_test = is_test ,
1020
1019
)
1021
1020
1022
1021
def _get_build_info (ctx , cc_toolchain ):
@@ -1041,7 +1040,7 @@ def _declare_executable_file(ctx):
1041
1040
1042
1041
return executable
1043
1042
1044
- def _get_runtime_details (ctx , semantics ):
1043
+ def _get_runtime_details (ctx , semantics , is_test ):
1045
1044
"""Gets various information about the Python runtime to use.
1046
1045
1047
1046
While most information comes from the toolchain, various legacy and
@@ -1050,6 +1049,7 @@ def _get_runtime_details(ctx, semantics):
1050
1049
Args:
1051
1050
ctx: Rule ctx
1052
1051
semantics: A `BinarySemantics` struct; see `create_binary_semantics_struct`
1052
+ is_test: bool; True if the rule is a test rule (has `test=True`), False if not
1053
1053
1054
1054
Returns:
1055
1055
A struct; see inline-field comments of the return value for details.
@@ -1078,6 +1078,7 @@ def _get_runtime_details(ctx, semantics):
1078
1078
if not effective_runtime :
1079
1079
fail ("Unable to find Python runtime" )
1080
1080
1081
+ extra_test_env = {}
1081
1082
if effective_runtime :
1082
1083
direct = [] # List of files
1083
1084
transitive = [] # List of depsets
@@ -1090,6 +1091,12 @@ def _get_runtime_details(ctx, semantics):
1090
1091
direct .append (effective_runtime .coverage_tool )
1091
1092
if effective_runtime .coverage_files :
1092
1093
transitive .append (effective_runtime .coverage_files )
1094
+ if is_test :
1095
+ py_test_toolchain = ctx .exec_groups ["test" ].toolchains [PY_TEST_TOOLCHAIN_TYPE ]
1096
+ if py_test_toolchain :
1097
+ coverage_rc = py_test_toolchain .py_test_info .coverage_rc
1098
+ extra_test_env = {"COVERAGE_RC" : coverage_rc .files .to_list ()[0 ].short_path }
1099
+ direct .extend (coverage_rc .files .to_list ())
1093
1100
runtime_files = depset (direct = direct , transitive = transitive )
1094
1101
else :
1095
1102
runtime_files = depset ()
@@ -1121,6 +1128,9 @@ def _get_runtime_details(ctx, semantics):
1121
1128
# be included. For in-build runtimes, this shold include the interpreter
1122
1129
# and any supporting files.
1123
1130
runfiles = ctx .runfiles (transitive_files = runtime_files ),
1131
+ # extra_test_env: dict[str, str]; Additional environment variables to
1132
+ # set when running the test.
1133
+ extra_test_env = extra_test_env ,
1124
1134
)
1125
1135
1126
1136
def _maybe_get_runtime_from_ctx (ctx ):
@@ -1582,8 +1592,7 @@ def _create_providers(
1582
1592
inherited_environment ,
1583
1593
runtime_details ,
1584
1594
output_groups ,
1585
- semantics ,
1586
- is_test ):
1595
+ semantics ):
1587
1596
"""Creates the providers an executable should return.
1588
1597
1589
1598
Args:
@@ -1613,37 +1622,26 @@ def _create_providers(
1613
1622
runtime_details: struct of runtime information; see _get_runtime_details()
1614
1623
output_groups: dict[str, depset[File]]; used to create OutputGroupInfo
1615
1624
semantics: BinarySemantics struct; see create_binary_semantics()
1616
- is_test: bool; True if the rule is a test rule,
1617
1625
1618
1626
Returns:
1619
1627
A list of modern providers.
1620
1628
"""
1621
1629
1622
- default_runfiles = runfiles_details .default_runfiles
1623
- extra_test_env = {}
1624
-
1625
- if is_test :
1626
- py_test_toolchain = ctx .exec_groups ["test" ].toolchains [PY_TEST_TOOLCHAIN_TYPE ]
1627
- if py_test_toolchain :
1628
- coverage_rc = py_test_toolchain .py_test_info .coverage_rc
1629
- extra_test_env = {"COVERAGE_RC" : coverage_rc .files .to_list ()[0 ].path }
1630
- default_runfiles = default_runfiles .merge (ctx .runfiles (files = coverage_rc .files .to_list ()))
1631
-
1632
1630
providers = [
1633
1631
DefaultInfo (
1634
1632
executable = executable ,
1635
1633
files = default_outputs ,
1636
1634
default_runfiles = _py_builtins .make_runfiles_respect_legacy_external_runfiles (
1637
1635
ctx ,
1638
- default_runfiles ,
1636
+ runfiles_details . default_runfiles ,
1639
1637
),
1640
1638
data_runfiles = _py_builtins .make_runfiles_respect_legacy_external_runfiles (
1641
1639
ctx ,
1642
1640
runfiles_details .data_runfiles ,
1643
1641
),
1644
1642
),
1645
1643
create_instrumented_files_info (ctx ),
1646
- _create_run_environment_info (ctx , inherited_environment , extra_test_env ),
1644
+ _create_run_environment_info (ctx , inherited_environment , runtime_details . extra_test_env ),
1647
1645
PyExecutableInfo (
1648
1646
main = main_py ,
1649
1647
runfiles_without_exe = runfiles_details .runfiles_without_exe ,
0 commit comments