1# Copyright 2017 The Bazel Authors. All rights reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14load("//tools/bazel_integration_test:bazel_integration_test.bzl", "bazel_integration_test") 15 16package(default_visibility = ["//visibility:public"]) 17 18licenses(["notice"]) # Apache 2.0 19 20bazel_integration_test( 21 name = "build_file_generation_example", 22 timeout = "long", 23) 24 25bazel_integration_test( 26 name = "bzlmod_build_file_generation_example", 27 timeout = "long", 28) 29 30bazel_integration_test( 31 name = "pip_install_example", 32 timeout = "long", 33) 34 35bazel_integration_test( 36 name = "pip_parse_example", 37 timeout = "long", 38) 39 40bazel_integration_test( 41 name = "pip_parse_vendored_example", 42 timeout = "long", 43 tags = ["fix-windows"], 44) 45 46bazel_integration_test( 47 name = "pip_repository_annotations_example", 48 timeout = "long", 49) 50 51bazel_integration_test( 52 name = "py_proto_library_example", 53 timeout = "long", 54) 55 56bazel_integration_test( 57 name = "py_proto_library_example_bzlmod", 58 timeout = "long", 59 bzlmod = True, 60 dirname = "py_proto_library", 61) 62 63bazel_integration_test( 64 name = "multi_python_versions_example", 65 timeout = "long", 66) 67 68bazel_integration_test( 69 name = "bzlmod_example", 70 bzlmod = True, 71 override_bazel_version = "6.0.0", 72) 73