mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 05:53:12 +00:00
disable system tests on PyPy
This commit is contained in:
parent
29563b8f2d
commit
bddd2cc996
@ -422,6 +422,9 @@ def _render_section_values(values):
|
||||
class SystemTestMixin(pollmixin.PollMixin, testutil.StallMixin):
|
||||
|
||||
def setUp(self):
|
||||
if 'pypy' in sys.version.lower():
|
||||
self.skip = "pypy can't run these, due to SSL errors (ee key too tiny)"
|
||||
|
||||
self.port_assigner = SameProcessStreamEndpointAssigner()
|
||||
self.port_assigner.setUp()
|
||||
self.addCleanup(self.port_assigner.tearDown)
|
||||
|
Loading…
Reference in New Issue
Block a user