Commit 68e13f40 authored by Jisi Liu's avatar Jisi Liu

Enable python tests with testdata.

parent 598480df
...@@ -534,7 +534,10 @@ py_proto_library( ...@@ -534,7 +534,10 @@ py_proto_library(
py_proto_library( py_proto_library(
name = "python_specific_test_protos", name = "python_specific_test_protos",
srcs = glob(["python/google/protobuf/internal/*.proto"]), srcs = glob([
"python/google/protobuf/internal/*.proto",
"python/google/protobuf/internal/import_test_package/*.proto",
]),
include = "python", include = "python",
protoc = ":protoc", protoc = ":protoc",
deps = [":python_common_test_protos"], deps = [":python_common_test_protos"],
...@@ -552,6 +555,9 @@ py_library( ...@@ -552,6 +555,9 @@ py_library(
internal_protobuf_py_tests( internal_protobuf_py_tests(
name = "python_tests_batch", name = "python_tests_batch",
data = glob([
"src/google/protobuf/**/*",
]),
modules = [ modules = [
"descriptor_database_test", "descriptor_database_test",
"descriptor_pool_test", "descriptor_pool_test",
...@@ -559,13 +565,13 @@ internal_protobuf_py_tests( ...@@ -559,13 +565,13 @@ internal_protobuf_py_tests(
"generator_test", "generator_test",
"json_format_test", "json_format_test",
"message_factory_test", "message_factory_test",
# "message_test", # failed due to testdata path "message_test",
"proto_builder_test", "proto_builder_test",
# "reflection_test", # failed due to testdata path "reflection_test",
"service_reflection_test", "service_reflection_test",
"symbol_database_test", "symbol_database_test",
"text_encoding_test", "text_encoding_test",
# "text_format_test", # failed due to testdata path "text_format_test",
"unknown_fields_test", "unknown_fields_test",
"wire_format_test", "wire_format_test",
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment