diff --git a/examples/pytest/BUILD.bazel b/examples/pytest/BUILD.bazel index 24c0d607..d1ba70ad 100644 --- a/examples/pytest/BUILD.bazel +++ b/examples/pytest/BUILD.bazel @@ -21,3 +21,13 @@ py_test( "@pypi_pytest//:pkg", ], ) + +py_test( + name = "absolute_main_test", + srcs = [ + # 2 files required + "__init__.py", + "main_test.py", + ], + main = "//examples/pytest:main_test.py", +) diff --git a/examples/pytest/__init__.py b/examples/pytest/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/examples/pytest/main_test.py b/examples/pytest/main_test.py new file mode 100644 index 00000000..8a113993 --- /dev/null +++ b/examples/pytest/main_test.py @@ -0,0 +1 @@ +print("loaded as main!") diff --git a/py/private/py_executable.bzl b/py/private/py_executable.bzl index f9e5370a..ebb7c6d8 100644 --- a/py/private/py_executable.bzl +++ b/py/private/py_executable.bzl @@ -26,7 +26,7 @@ def _determine_main(ctx): """ if ctx.attr.main: # Deviation from rules_python: allow a leading colon, e.g. `main = ":my_target"` - proposed_main = ctx.attr.main.removeprefix(":") + proposed_main = ctx.attr.main.label.name.removeprefix(":") if not proposed_main.endswith(".py"): fail("main {} must end in '.py'".format(proposed_main)) else: @@ -87,7 +87,7 @@ determine_main = rule( implementation = _determine_main_impl, attrs = { "target_name": attr.string(mandatory = True, doc = "The name of the py_binary or py_test we are finding a main for"), - "main": attr.string(doc = "Hint the user supplied as the main"), + "main": attr.label(doc = "Hint the user supplied as the main", allow_single_file = True), "srcs": attr.label_list(allow_files = True), }, )