fix: Enable location expansion for `sh_py_run_test` (#2583)

I noticed that my `$(location //path/to:target)` wasn't getting
expanded when writing a test. This patch fixes the issue by forwarding
the already-expanded environment from the inner target to the outer
target.
diff --git a/tests/support/sh_py_run_test.bzl b/tests/support/sh_py_run_test.bzl
index 7fb7016..9bf0a74 100644
--- a/tests/support/sh_py_run_test.bzl
+++ b/tests/support/sh_py_run_test.bzl
@@ -86,16 +86,14 @@
                 default_info.default_runfiles,
             ),
         ),
-        testing.TestEnvironment(
-            environment = ctx.attr.env,
-        ),
+        # Inherit the expanded environment from the inner target.
+        ctx.attr.target[RunEnvironmentInfo],
     ]
 
 def _make_reconfig_rule(**kwargs):
     attrs = {
         "bootstrap_impl": attr.string(),
         "build_python_zip": attr.string(default = "auto"),
-        "env": attr.string_dict(),
         "extra_toolchains": attr.string_list(
             doc = """
 Value for the --extra_toolchains flag.
@@ -133,7 +131,6 @@
     reconfig_kwargs["bootstrap_impl"] = kwargs.pop("bootstrap_impl", None)
     reconfig_kwargs["extra_toolchains"] = kwargs.pop("extra_toolchains", None)
     reconfig_kwargs["python_version"] = kwargs.pop("python_version", None)
-    reconfig_kwargs["env"] = kwargs.get("env")
     reconfig_kwargs["target_compatible_with"] = kwargs.get("target_compatible_with")
 
     inner_name = "_{}_inner".format(name)
@@ -172,7 +169,7 @@
 
     py_binary_kwargs = {
         key: kwargs.pop(key)
-        for key in ("imports", "deps")
+        for key in ("imports", "deps", "env")
         if key in kwargs
     }