Skip to content

Commit

Permalink
Run tests using parallel make (reducing build time)
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphlange committed Apr 27, 2020
1 parent 4413c7d commit 29e657d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor/do.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ret=0

if [ "$TEST" != "NO" ]
then
make tapfiles || ret=$?
make -j2 tapfiles || ret=$?

make -sk test-results
fi
Expand Down

0 comments on commit 29e657d

Please sign in to comment.