Skip to content

parallelize_tests #1951

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 17, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Limited number of processes on Travis to 8, since otherwise we run ou…
…t of memory when running too many inkscapes/ghostscripts in parallel
  • Loading branch information
mdboom committed May 8, 2013
commit 3063af920eeeb9905848b54c20b9c33e79df862f
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ install:
script:
- mkdir ../tmp_test_dir
- cd ../tmp_test_dir
- echo Testing using $(nproc) processes
- python ../matplotlib/tests.py -sv --processes=$(nproc) --process-timeout=300
- echo Testing using 4 processes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The echo statement here doesn't match what is passed to the command line

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed. Thanks for catching.

- python ../matplotlib/tests.py -sv --processes=8 --process-timeout=300