make dotnet tests run for 'test' target
This commit is contained in:
parent
4cdf99a807
commit
0ee77d776f
2 changed files with 2 additions and 2 deletions
|
|
@ -56,7 +56,7 @@ Depends(dotnettestlib, hammer_dll)
|
|||
Depends(dotnettestlib, libhammer_dotnet)
|
||||
dotnettest = Alias("testdotnet", [dotnettestexec], dotnettestexec)
|
||||
AlwaysBuild(dotnettestexec)
|
||||
testruns.extend(dotnettestlib)
|
||||
testruns.append(dotnettestexec)
|
||||
|
||||
#dotnetinstallexec = dotnetenv.Command(None, libhammer_dotnet, "make install -C " + targetdir)
|
||||
#dotnetinstall = Alias("installdotnet", [dotnetinstallexec], dotnetinstallexec)
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ pytests = ['hammer_tests.py']
|
|||
pytestexec = pytestenv.Command(['hammer.pyc', 'hammer_tests.pyc'], pytests + libhammer_python, "LD_LIBRARY_PATH=" + os.path.dirname(str(libhammer_shared[0])) + " nosetests -vv $SOURCE")
|
||||
pytest = Alias("testpython", [pytestexec], pytestexec)
|
||||
AlwaysBuild(pytestexec)
|
||||
testruns.extend(pytest)
|
||||
testruns.append(pytest)
|
||||
|
||||
pyinstallexec = pythonenv.Command(None, libhammer_python, 'python ' + os.path.join(pydir, 'setup.py ') + ' install')
|
||||
pyinstall = Alias("installpython", [pyinstallexec], pyinstallexec)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue