Download this file

29 lines (24 with data), 589 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# KEEP THIS LINE to import nucleus.bzl externally
# Placeholder: load py_test
test_suite(
name = "smoke_tests",
tests = [
"protobuf_implementation_test",
":env_smoke_test",
],
)
py_test(
name = "env_smoke_test",
size = "small",
srcs = ["env_smoke_test.py"],
python_version = "PY3",
srcs_version = "PY3",
)
py_test(
name = "protobuf_implementation_test",
size = "small",
srcs = ["protobuf_implementation_test.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = ["@com_google_protobuf//:protobuf_python"],
)