Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
Fix tests on Travis?
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Jun 24, 2014
1 parent 3c05ab1 commit cb2f077
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
import re
from release import release

# This is needed for Travis to run the tests without errors.
# See: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing
except ImportError:
pass

tests_require = ['nose>=1.0', 'WebTest', 'mock']

# Don't load custom settings (for tests, etc.)
Expand Down

0 comments on commit cb2f077

Please sign in to comment.