aboutsummaryrefslogtreecommitdiff
path: root/examples/bzlmod/tests/dupe_requirements/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bzlmod/tests/dupe_requirements/BUILD.bazel')
-rw-r--r--examples/bzlmod/tests/dupe_requirements/BUILD.bazel19
1 files changed, 0 insertions, 19 deletions
diff --git a/examples/bzlmod/tests/dupe_requirements/BUILD.bazel b/examples/bzlmod/tests/dupe_requirements/BUILD.bazel
deleted file mode 100644
index 47eb7ca..0000000
--- a/examples/bzlmod/tests/dupe_requirements/BUILD.bazel
+++ /dev/null
@@ -1,19 +0,0 @@
-load("@rules_python//python:pip.bzl", "compile_pip_requirements")
-load("@rules_python//python:py_test.bzl", "py_test")
-
-py_test(
- name = "dupe_requirements_test",
- srcs = ["dupe_requirements_test.py"],
- deps = [
- "@dupe_requirements//pyjwt",
- ],
-)
-
-compile_pip_requirements(
- name = "requirements",
- src = "requirements.in",
- requirements_txt = "requirements.txt",
- # This is to make the requirements diff test not run on CI. The content we
- # need in requirements.txt isn't exactly what will be generated.
- tags = ["manual"],
-)