Skip to content
Merged
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
7 changes: 5 additions & 2 deletions conformance/conformance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,13 @@ class ConformanceTestSuite(unittest.TestSuite):
"optionals/optionals/optional_struct_optindex_index_value",
"optionals/optionals/optional_struct_optindex_value",
"optionals/optionals/struct_optindex_value",
# TODO(b/507568865): Timezone support on Windows.
"timestamps/timestamp_selectors_tz/.*",
]

if os.name == "nt":
# TODO(b/507568865): These tests depend on configuring a timezone database
# which isn't available in our windows test environment.
SKIP_TESTS.append("timestamps/timestamp_selectors_tz/.*")

def __init__(self):
super().__init__(self)
self._load_tests()
Expand Down
5 changes: 4 additions & 1 deletion custom_ext/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ py_library(
data = [
"//cel_expr_python:cel",
],
deps = ["//cel_expr_python:cel"],
deps = select({
"@platforms//os:windows": [],
"//conditions:default": ["//cel_expr_python:cel"],
}),
)

py_test(
Expand Down
Loading