Skip to content

Commit

Permalink
Added Makefile for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Reuven V. Gonzales committed Feb 28, 2012
1 parent 7571e1f commit 96f3221
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
@@ -0,0 +1,18 @@
test:
nosetests -d

# THIS TEST ONLY WORK ON OSX as far as I know
# It defaults to having a timeout of 30 seconds
ptest:
nosetests -d --processes=8 --process-timeout=30

# Verbose parallel testing
ptestv:
nosetests -d --processes=8 --process-timeout=30 -v

quicktest:
nosetests -a '!slow' -d

# Verbose quick tests
quicktestv:
nosetests -a '!slow' -d -v

0 comments on commit 96f3221

Please sign in to comment.