Add a build rule for the boilerplate unit test.

This commit is contained in:
spxtr
2017-01-01 22:54:32 -08:00
parent f5d9c430e9
commit 796e18f1c7
3 changed files with 10 additions and 17 deletions

View File

@@ -1,3 +1,12 @@
package(default_visibility = ["//visibility:public"])
exports_files(glob(["*.txt"]))
py_test(
name = "boilerplate_test",
srcs = [
"boilerplate_test.py",
"boilerplate.py",
],
data = glob(["*.txt", "test/*"]),
)