We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8e8ef9 commit 04f0013Copy full SHA for 04f0013
tests/__init__.py
@@ -35,9 +35,6 @@
35
if PY2:
36
FileNotFoundError = OSError
37
38
- # Travis runs tests in parallel. Limit the connection pool to not overload the test server
39
-BaseProtocol.SESSION_POOLSIZE = 2
40
-
41
42
class BuildTest(unittest.TestCase):
43
def test_magic(self):
@@ -321,7 +318,7 @@ def setUp(self):
321
318
self.maxDiff = None
322
319
323
320
def test_poolsize(self):
324
- self.assertEqual(self.config.protocol.SESSION_POOLSIZE, 2)
+ self.assertEqual(self.config.protocol.SESSION_POOLSIZE, 4)
325
326
def random_val(self, field_type):
327
if not isinstance(field_type, list) and isanysubclass(field_type, ExtendedProperty):
0 commit comments