aboutsummaryrefslogtreecommitdiff
path: root/tests/entry_points/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tests/entry_points/BUILD.bazel')
-rw-r--r--tests/entry_points/BUILD.bazel39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/entry_points/BUILD.bazel b/tests/entry_points/BUILD.bazel
new file mode 100644
index 0000000..7a22d3c
--- /dev/null
+++ b/tests/entry_points/BUILD.bazel
@@ -0,0 +1,39 @@
+# Copyright 2023 The Bazel Authors. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+load("@bazel_skylib//rules:build_test.bzl", "build_test")
+load("//python:py_test.bzl", "py_test")
+load(":simple_macro.bzl", "py_console_script_binary_in_a_macro")
+
+py_test(
+ name = "py_console_script_gen_test",
+ srcs = ["py_console_script_gen_test.py"],
+ main = "py_console_script_gen_test.py",
+ visibility = ["//visibility:private"],
+ deps = [
+ "//python/private:py_console_script_gen_lib",
+ ],
+)
+
+py_console_script_binary_in_a_macro(
+ name = "twine",
+ pkg = "@publish_deps_twine//:pkg",
+)
+
+build_test(
+ name = "build_entry_point",
+ targets = [
+ ":twine",
+ ],
+)