Skip to content

Commit 04f0013

Browse files
Erik CederstrandErik Cederstrand
Erik Cederstrand
authored and
Erik Cederstrand
committed
Remove session pool restriction. Parallel Travis testing is disabled
1 parent c8e8ef9 commit 04f0013

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/__init__.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@
3535
if PY2:
3636
FileNotFoundError = OSError
3737

38-
# Travis runs tests in parallel. Limit the connection pool to not overload the test server
39-
BaseProtocol.SESSION_POOLSIZE = 2
40-
4138

4239
class BuildTest(unittest.TestCase):
4340
def test_magic(self):
@@ -321,7 +318,7 @@ def setUp(self):
321318
self.maxDiff = None
322319

323320
def test_poolsize(self):
324-
self.assertEqual(self.config.protocol.SESSION_POOLSIZE, 2)
321+
self.assertEqual(self.config.protocol.SESSION_POOLSIZE, 4)
325322

326323
def random_val(self, field_type):
327324
if not isinstance(field_type, list) and isanysubclass(field_type, ExtendedProperty):

0 commit comments

Comments
 (0)