##// END OF EJS Templates
tests: skip wireproto clientreactor tests on Python 3.6.0-3.6.3 inclusive...
Augie Fackler -
r40516:07b87ee2 default
parent child Browse files
Show More
@@ -1,5 +1,6 b''
1 1 from __future__ import absolute_import
2 2
3 import sys
3 4 import unittest
4 5 import zlib
5 6
@@ -600,5 +601,10 b' class StreamSettingsTests(unittest.TestC'
600 601 self.assertEqual(meta[b'data'], response2)
601 602
602 603 if __name__ == '__main__':
604 if (3, 6, 0) <= sys.version_info <= (3, 6, 3):
605 # Python 3.6.0 through 3.6.3 inclusive shipped with
606 # https://bugs.python.org/issue31825 and we can't run these
607 # tests on those specific versions of Python. Sigh.
608 sys.exit(80)
603 609 import silenttestrunner
604 610 silenttestrunner.main(__name__)
General Comments 0
You need to be logged in to leave comments. Login now