From 8467586fc5546debe7b672fcebbf2b13aa6fa06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Thu, 28 Dec 2017 18:46:36 +0000 Subject: Experiment: add some basic bazel support. This only defines targets needed to run test_common through bazel. Adding extra support for pyserial and other dependencies will take some time but would help with building a fully-hermetic test set. --- test/BUILD | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/BUILD (limited to 'test/BUILD') diff --git a/test/BUILD b/test/BUILD new file mode 100644 index 0000000..e760b32 --- /dev/null +++ b/test/BUILD @@ -0,0 +1,12 @@ +# -*- python -*- + +py_test( + name = "test_common", + srcs = ["test_common.py"], + srcs_version = "PY3", + deps = [ + "//glucometerutils:common", + "@abseil_py_archive//absl/testing:parameterized", + ], + default_python_version = "PY3", +) -- cgit v1.2.3