aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/python
diff options
context:
space:
mode:
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/BUILD8
-rw-r--r--tools/python/runfiles/BUILD16
2 files changed, 24 insertions, 0 deletions
diff --git a/tools/python/BUILD b/tools/python/BUILD
index ab09128e0c..a344b44287 100644
--- a/tools/python/BUILD
+++ b/tools/python/BUILD
@@ -31,3 +31,11 @@ filegroup(
],
visibility = ["//tools:__pkg__"],
)
+
+test_suite(
+ name = "all_windows_tests",
+ tests = [
+ "//tools/python/runfiles:all_windows_tests",
+ ],
+ visibility = ["//tools:__pkg__"],
+)
diff --git a/tools/python/runfiles/BUILD b/tools/python/runfiles/BUILD
index 79273e85ce..08cec716cb 100644
--- a/tools/python/runfiles/BUILD
+++ b/tools/python/runfiles/BUILD
@@ -33,3 +33,19 @@ py_test(
visibility = ["//visibility:public"],
deps = [":runfiles"],
)
+
+test_suite(
+ name = "windows_tests",
+ tags = [
+ "-no_windows",
+ "-slow",
+ ],
+)
+
+test_suite(
+ name = "all_windows_tests",
+ tests = [
+ ":windows_tests",
+ ],
+ visibility = ["//tools/python:__pkg__"],
+)