Skip to content

Commit

Permalink
Skipped ipv6 test, because Travis does not support them anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
mauritsvanrees committed Feb 1, 2016
1 parent c2931d7 commit 2366f95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ http://docs.zope.org/zope2/
Bugs Fixed
++++++++++

- Skipped ipv6 test, because Travis does not support them anymore.

- LP #789863: Ensure that Request objects cannot be published / traversed
directly via a URL.

Expand Down
6 changes: 4 additions & 2 deletions src/ZServer/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ def test_http_factory(self):
self.assertEqual(server.port, 9381)
server.close()

def test_http_over_ipv6(self):
# unittest.skip is not supported on Python 2.6...
# @unittest.skip('ipv6 is not available on Travis anymore')
def skipped_test_http_over_ipv6(self):
factory = self.load_factory("""\
<http-server>
address [::1]:81
Expand All @@ -149,7 +151,7 @@ def test_http_over_ipv6(self):
self.assertEqual(server.ip, '::1')
self.assertEqual(server.port, 9381)
server.close()

def test_http_factory_defaulthost(self):
factory = self.load_factory("""\
<http-server>
Expand Down

0 comments on commit 2366f95

Please sign in to comment.