blob: 241d9c1073727c8f1a29d09883d882c446d72b13 [file] [log] [blame]
load("@rules_python//python:defs.bzl", "py_test")
exports_files(
glob(["data/**"]),
visibility = ["//visibility:public"],
)
py_test(
name = "pip_whl_mods_test",
srcs = ["pip_whl_mods_test.py"],
env = {
"REQUESTS_PKG": "$(rlocationpaths @pip//requests:pkg)",
"WHEEL_PKG": "$(rlocationpaths @pip//wheel:pkg)",
},
main = "pip_whl_mods_test.py",
deps = [
"@pip//requests:pkg",
"@pip//wheel:pkg",
"@rules_python//python/runfiles",
],
)