Show More
@@ -1,5 +1,6 b'' | |||||
1 | from __future__ import absolute_import |
|
1 | from __future__ import absolute_import | |
2 |
|
2 | |||
|
3 | import sys | |||
3 | import unittest |
|
4 | import unittest | |
4 | import zlib |
|
5 | import zlib | |
5 |
|
6 | |||
@@ -600,5 +601,10 b' class StreamSettingsTests(unittest.TestC' | |||||
600 | self.assertEqual(meta[b'data'], response2) |
|
601 | self.assertEqual(meta[b'data'], response2) | |
601 |
|
602 | |||
602 | if __name__ == '__main__': |
|
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 | import silenttestrunner |
|
609 | import silenttestrunner | |
604 | silenttestrunner.main(__name__) |
|
610 | silenttestrunner.main(__name__) |
General Comments 0
You need to be logged in to leave comments.
Login now