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 9c2955b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
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
3 changes: 2 additions & 1 deletion src/ZServer/tests/test_config.py
Expand Up @@ -134,6 +134,7 @@ def test_http_factory(self):
self.assertEqual(server.port, 9381)
server.close()

@unittest.skip('ipv6 is not available on Travis anymore')
def test_http_over_ipv6(self):
factory = self.load_factory("""\
<http-server>
Expand All @@ -149,7 +150,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 9c2955b

Please sign in to comment.