aboutsummaryrefslogtreecommitdiff
path: root/tests/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/BUILD.bazel')
-rw-r--r--tests/BUILD.bazel34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/BUILD.bazel b/tests/BUILD.bazel
new file mode 100644
index 0000000..2dd2282
--- /dev/null
+++ b/tests/BUILD.bazel
@@ -0,0 +1,34 @@
+load("@bazel_skylib//rules:build_test.bzl", "build_test")
+load("//tools/bazel_integration_test:bazel_integration_test.bzl", "bazel_integration_test")
+
+package(default_visibility = ["//visibility:public"])
+
+licenses(["notice"])
+
+bazel_integration_test(
+ name = "pip_repository_entry_points_example",
+ timeout = "long",
+ # The dependencies needed for this test are not cross-platform: https://github.com/bazelbuild/rules_python/issues/260
+ tags = ["fix-windows"],
+)
+
+build_test(
+ name = "bzl_libraries_build_test",
+ targets = [
+ # keep sorted
+ "//python:current_py_toolchain_bzl",
+ "//python:defs_bzl",
+ "//python:proto_bzl",
+ "//python:py_binary_bzl",
+ "//python:py_cc_link_params_info_bzl",
+ "//python:py_import_bzl",
+ "//python:py_info_bzl",
+ "//python:py_library_bzl",
+ "//python:py_runtime_bzl",
+ "//python:py_runtime_info_bzl",
+ "//python:py_runtime_pair_bzl",
+ "//python:py_test_bzl",
+ "//python/cc:py_cc_toolchain_bzl",
+ "//python/cc:py_cc_toolchain_info_bzl",
+ ],
+)