1load("@bazel_skylib//rules:build_test.bzl", "build_test") 2load("//tools/bazel_integration_test:bazel_integration_test.bzl", "bazel_integration_test") 3 4package(default_visibility = ["//visibility:public"]) 5 6licenses(["notice"]) 7 8bazel_integration_test( 9 name = "pip_repository_entry_points_example", 10 timeout = "long", 11 # The dependencies needed for this test are not cross-platform: https://github.com/bazelbuild/rules_python/issues/260 12 tags = ["fix-windows"], 13) 14 15build_test( 16 name = "bzl_libraries_build_test", 17 targets = [ 18 # keep sorted 19 "//python:current_py_toolchain_bzl", 20 "//python:defs_bzl", 21 "//python:proto_bzl", 22 "//python:py_binary_bzl", 23 "//python:py_cc_link_params_info_bzl", 24 "//python:py_import_bzl", 25 "//python:py_info_bzl", 26 "//python:py_library_bzl", 27 "//python:py_runtime_bzl", 28 "//python:py_runtime_info_bzl", 29 "//python:py_runtime_pair_bzl", 30 "//python:py_test_bzl", 31 "//python/cc:py_cc_toolchain_bzl", 32 "//python/cc:py_cc_toolchain_info_bzl", 33 ], 34) 35