Skip to content

Commit ef53267

Browse files
committed
Enable parallel unit testing on travis-ci
1 parent e616dc4 commit ef53267

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci_scripts/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test_dir=$cwd/tests
1010
cd $TEST_DIR
1111

1212
if [[ "$COVERAGE" == "true" ]]; then
13-
nosetests -sv --with-coverage --cover-package=$MODULE $test_dir
13+
nosetests --processes=4 --process-timeout=600 -sv --with-coverage --cover-package=$MODULE $test_dir
1414
else
15-
nosetests -sv $test_dir
15+
nosetests --processes=4 --process-timeout=600 -sv $test_dir
1616
fi

0 commit comments

Comments
 (0)