blob: 3503ac3017eee42533f08d573c2672fe30ca577a [file] [log] [blame]
load("@rules_python//python:defs.bzl", "py_test")
# gazelle:ignore
py_test(
name = "runfiles_test",
srcs = ["runfiles_test.py"],
data = [
"data/data.txt",
"@our_other_module//other_module/pkg:data/data.txt",
],
env = {
"DATA_RLOCATIONPATH": "$(rlocationpath data/data.txt)",
"OTHER_MODULE_DATA_RLOCATIONPATH": "$(rlocationpath @our_other_module//other_module/pkg:data/data.txt)",
},
deps = [
"@our_other_module//other_module/pkg:lib",
"@rules_python//python/runfiles",
],
)