Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

load("@jaxite//bazel:test_oss.bzl", "cpu_gpu_tpu_test", "gpu_tpu_test", "multichip_tpu_test", "tpu_test")
load("@rules_license//rules:license.bzl", "license")
load("@rules_python//python:defs.bzl", "py_library", "py_test")
load("@rules_python//python:defs.bzl", "py_library")
load("//devtools/python/blaze:strict.bzl", "py_strict_test")

package(
default_applicable_licenses = [":license"],
Expand Down Expand Up @@ -38,7 +39,7 @@ py_library(
],
)

py_test(
py_strict_test(
name = "encode_test",
size = "small",
timeout = "long",
Expand Down Expand Up @@ -430,7 +431,7 @@ cpu_gpu_tpu_test(
],
)

py_test(
py_strict_test(
name = "lut_test",
srcs = ["jaxite/jaxite_bool/lut_test.py"],
deps = [
Expand Down Expand Up @@ -475,7 +476,7 @@ multichip_tpu_test(
],
)

py_test(
py_strict_test(
name = "rns_test",
size = "small",
timeout = "moderate",
Expand All @@ -493,7 +494,7 @@ py_test(
],
)

py_test(
py_strict_test(
name = "rns_utils_test",
size = "small",
timeout = "moderate",
Expand Down Expand Up @@ -570,7 +571,7 @@ tpu_test(
],
)

py_test(
py_strict_test(
name = "math_test",
size = "small",
timeout = "moderate",
Expand Down
2 changes: 1 addition & 1 deletion bazel/test_oss.bzl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Testing util helpers"""

load("@rules_python//python:defs.bzl", "py_test")
load("//third_party/bazel_rules/rules_python/python:py_test.bzl", "py_test")

# This file is a shim to have the same Google-internal and external API
# for running jaxite on TPU and GPU tests. The internal API is not
Expand Down
Loading