blob: 7943e4065f802663c5fa5ba9501b58d9ebd62ed8 [file]
load("//tests/support:support.bzl", "SUPPORTS_BZLMOD")
load("//tests/support/pytest_test:pytest_test.bzl", "pytest_test")
pytest_test(
name = "zipper_test",
srcs = ["zipper_test.py"],
target_compatible_with = SUPPORTS_BZLMOD,
deps = ["//tools/zipapp:zipper_lib"],
)
pytest_test(
name = "exe_zip_maker_test",
srcs = ["exe_zip_maker_test.py"],
target_compatible_with = SUPPORTS_BZLMOD,
deps = ["//tools/zipapp:exe_zip_maker_lib"],
)
pytest_test(
name = "zip_main_maker_test",
srcs = ["zip_main_maker_test.py"],
target_compatible_with = SUPPORTS_BZLMOD,
deps = ["//tools/zipapp:zip_main_maker_lib"],
)