aboutsummaryrefslogtreecommitdiff
path: root/git/test/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/__init__.py')
-rw-r--r--git/test/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/git/test/__init__.py b/git/test/__init__.py
index 757cbad1..63d25743 100644
--- a/git/test/__init__.py
+++ b/git/test/__init__.py
@@ -3,3 +3,12 @@
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+
+import gitdb.util
+
+def _init_pool():
+ """Assure the pool is actually threaded"""
+ size = 2
+ print "Setting ThreadPool to %i" % size
+ gitdb.util.pool.set_size(size)
+