8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4d19c commit d1f4895Copy full SHA for d1f4895
python/config_settings/transition.bzl
@@ -124,6 +124,14 @@ _COMMON_ATTRS = {
124
),
125
}
126
127
+_PY_TEST_ATTRS = {
128
+ "_lcov_merger": attr.label(
129
+ default = configuration_field(fragment = "coverage", name = "output_generator"),
130
+ executable = True,
131
+ cfg = "exec",
132
+ ),
133
+}
134
+
135
_transition_py_binary = rule(
136
_transition_py_impl,
137
attrs = _COMMON_ATTRS,
@@ -133,7 +141,7 @@ _transition_py_binary = rule(
141
142
_transition_py_test = rule(
143
- attrs = _COMMON_ATTRS,
144
+ attrs = _COMMON_ATTRS | _PY_TEST_ATTRS,
145
cfg = _transition_python_version,
138
146
test = True,
139
147
)
0 commit comments