2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00
Files
python/libs/numpy/test/SConscript

13 lines
365 B
Python

Import("boost_numpy_env")
test = []
for name in ("ufunc", "templates", "ndarray", "indexing", "shapes"):
mod = boost_numpy_env.SharedLibrary("%s_mod" % name, "%s_mod.cpp" % name, SHLIBPREFIX="",
LIBS="boost_numpy")
test.extend(
boost_numpy_env.PythonUnitTest("%s.py" % name, mod)
)
Return("test")