Get the anosql tests clean

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-14 09:20:58 -06:00
commit daca9da84d
3 changed files with 20 additions and 10 deletions
tools/python

View file

@ -164,9 +164,13 @@ def py_project(name=None,
"""
lib_srcs = lib_srcs or native.glob(["src/python/**/*.py"])
lib_data = lib_data or native.glob(["src/resources/**/*"])
lib_data = lib_data or native.glob(["src/resources/**/*",
"src/python/**/*"],
exclude=["**/*.py"])
test_srcs = test_srcs or native.glob(["test/python/**/*.py"])
test_data = test_data or native.glob(["test/resources/**/*"])
test_data = test_data or native.glob(["test/resources/**/*",
"test/python/**/*"],
exclude=["**/*.py"])
py_library(
name=name,