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: 6 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ git_override(
)

# https://registry.bazel.build/modules/cel-spec
bazel_dep(name = "cel-spec", version = "0.25.1", repo_name = "com_google_cel_spec")
bazel_dep(name = "cel-spec", version = "0.25.3", repo_name = "com_google_cel_spec")
git_override(
module_name = "cel-spec",
commit = "ba58ae5007845f3a1279b488cdeb79645ce958bb",
remote = "https://github.com/cel-expr/cel-spec",
)

# https://registry.bazel.build/modules/googletest
bazel_dep(name = "googletest", version = "1.17.0.bcr.2", repo_name = "com_google_googletest")
Expand Down
1 change: 1 addition & 0 deletions conformance/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ _ALL_TESTS = [
"@com_google_cel_spec//tests/simple:testdata/fp_math.textproto",
"@com_google_cel_spec//tests/simple:testdata/integer_math.textproto",
"@com_google_cel_spec//tests/simple:testdata/lists.textproto",
"@com_google_cel_spec//tests/simple:testdata/lists_ext.textproto",
"@com_google_cel_spec//tests/simple:testdata/logic.textproto",
"@com_google_cel_spec//tests/simple:testdata/macros.textproto",
"@com_google_cel_spec//tests/simple:testdata/math_ext.textproto",
Expand Down
13 changes: 2 additions & 11 deletions conformance/conformance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,6 @@ class ConformanceTestSuite(unittest.TestSuite):
"fields/qualified_identifier_resolution/qualified_identifier_resolution_unchecked",
"fields/qualified_identifier_resolution/map_value_repeat_key_heterogeneous",
"namespace/namespace/self_eval_container_lookup_unchecked",
# TODO(b/453051120): fix support for FieldMask->toJson
"wrappers/field_mask/to_json",
# TODO(b/464071224): fix support for triple-quoted unescaped punctuation.
"parse/bytes_literals/triple_double_quoted_unescaped_punctuation",
"parse/bytes_literals/triple_single_quoted_unescaped_punctuation",
"parse/string_literals/triple_double_quoted_unescaped_punctuation",
"parse/string_literals/triple_single_quoted_unescaped_punctuation",
# Recent changes
"proto2/set_null/repeated_field_timestamp_null_pruned",
"proto2/set_null/repeated_field_duration_null_pruned",
Expand All @@ -80,10 +73,8 @@ class ConformanceTestSuite(unittest.TestSuite):
"proto3/set_null/map_timestamp_null_pruned",
"proto3/set_null/map_duration_null_pruned",
"proto3/set_null/map_wrapper_null_pruned",
"string_ext/format/default precision for fixed-point clause with int",
"string_ext/format/default precision for fixed-point clause with uint",
"string_ext/format/default precision for scientific notation with int",
"string_ext/format/default precision for scientific notation with uint",
# TODO(b/548571767): add lists_ext support
"lists_ext/.*",
]

if sys.platform == "win32":
Expand Down
Loading