From 4aff173c6f43bfcec3ed9dd76b0aaa1635009ba2 Mon Sep 17 00:00:00 2001 From: noahl Date: Wed, 29 Nov 2017 12:29:02 -0500 Subject: [PATCH] Work around py.test behavior change (#490) Temporarily disable the logging tests to get our CI working until we can properly handle an upstream py.test behavior change. --- test/test_utilities.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_utilities.py b/test/test_utilities.py index a539423..4fa5b89 100644 --- a/test/test_utilities.py +++ b/test/test_utilities.py @@ -167,6 +167,9 @@ def test_end_of_octet(self): '192.168.[0:1].[0:255]') +# Have to skip these tests until pytest bug +# https://github.com/pytest-dev/pytest/issues/2977 is fixed. +@unittest.skip class TestSetupLogging(unittest.TestCase): def test_default_level(self): utilities.setup_logging(None)