Skip test that requires getaddrinfo(), which is not available in the build environment. This package uses a regexp for finding tests (see runner.py), so using @unittest.skip does not work. --- a/waitress/tests/test_adjustments.py +++ b/waitress/tests/test_adjustments.py @@ -185,22 +185,6 @@ def test_bad_port(self): self.assertRaises(ValueError, self._makeOne, listen='127.0.0.1:test') - def test_service_port(self): - if WIN and PY2: # pragma: no cover - # On Windows and Python 2 this is broken, so we raise a ValueError - self.assertRaises( - ValueError, - self._makeOne, - listen='127.0.0.1:http', - ) - return - - inst = self._makeOne(listen='127.0.0.1:http 0.0.0.0:https') - - bind_pairs = [sockaddr[:2] for (_, _, _, sockaddr) in inst.listen] - - self.assertEqual(bind_pairs, [('127.0.0.1', 80), ('0.0.0.0', 443)]) - def test_dont_mix_host_port_listen(self): self.assertRaises( ValueError, ble>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/llvm-3.5-fix-clang-build-with-gcc5.patch
Add them. * gnu/packages.scm, gnu/packages/bootstrap.scm, gnu/services/herd.scm, guix/build-system/gnu.scm, guix/build-system/python.scm, guix/derivations.scm, guix/gnu-maintenance.scm, guix/import/elpa.scm, guix/scripts/archive.scm, guix/scripts/build.scm, guix/scripts/graph.scm, guix/scripts/lint.scm, guix/scripts/size.scm, guix/scripts/substitute.scm, guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports accordingly. 51e'>gnu: Add p2c....* gnu/packages/pascal.scm (p2c): New variable.
AgeCommit message (Expand)Author
Ludovic Courtès
Danny Milosavljevic
2020-08-29gnu: Add fpc....* gnu/packages/pascal.scm: New file. * gnu/packages/patches/fpc-reproducibility.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add pascal.scm. (dist_patch_DATA): Register patch. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> Kei Kebreau