summaryrefslogtreecommitdiff
path: root/grpc/test/distrib/bazel/python/WORKSPACE
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/test/distrib/bazel/python/WORKSPACE')
-rw-r--r--grpc/test/distrib/bazel/python/WORKSPACE22
1 files changed, 22 insertions, 0 deletions
diff --git a/grpc/test/distrib/bazel/python/WORKSPACE b/grpc/test/distrib/bazel/python/WORKSPACE
new file mode 100644
index 00000000..e8120154
--- /dev/null
+++ b/grpc/test/distrib/bazel/python/WORKSPACE
@@ -0,0 +1,22 @@
+# TODO: Move to test/distrib/python.
+
+local_repository(
+ name = "com_github_grpc_grpc",
+ path = "../../../..",
+)
+
+# Ensure rules don't rely on __main__ naming convention.
+workspace(name = "python_test_repo")
+
+load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
+
+grpc_deps()
+
+load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
+
+grpc_extra_deps()
+
+local_repository(
+ name = "some_other_repo",
+ path = "../python_second_test_repo",
+)