Run tests using parallel make (reducing build time)

This commit is contained in:
Ralph Lange
2020-04-27 11:33:45 +02:00
parent 4413c7d75e
commit 29e657d585
2 changed files with 2 additions and 2 deletions

View File

@@ -537,7 +537,7 @@ def build(args):
def test(args):
setup_for_build(args)
print('{0}Running the main module tests{1}'.format(ANSI_YELLOW, ANSI_RESET))
call_make(['tapfiles'], parallel=0)
call_make(['tapfiles'])
call_make(['test-results'], parallel=0, silent=True)
def doExec(args):