diff --git a/ChangeLog b/ChangeLog index 79e22340..d0d01dae 100755 --- a/ChangeLog +++ b/ChangeLog @@ -44,7 +44,7 @@ Features: * :issue:`373` - Switch over to using Flake8 for PEP8 and Style Compliance * :pr:`375` - Redis Cache Handler Support * :issue:`379` - Support for Alternative Config File Extensions - + * :issue:`389` - ConfigObj Support for Python 3 Refactoring; diff --git a/tests/ext/configobj_tests.py b/tests/ext/configobj_tests.py index adee274a..f9d70d81 100644 --- a/tests/ext/configobj_tests.py +++ b/tests/ext/configobj_tests.py @@ -6,12 +6,6 @@ from cement.core import handler, backend, log from cement.utils import test from cement.utils.misc import rando -if sys.version_info[0] < 3: - import configobj -else: - raise test.SkipTest( - 'ConfigObj does not support Python 3') # pragma: no cover - APP = rando()[:12] diff --git a/tests/ext/json_configobj_tests.py b/tests/ext/json_configobj_tests.py index 184005d4..371d71bb 100644 --- a/tests/ext/json_configobj_tests.py +++ b/tests/ext/json_configobj_tests.py @@ -5,12 +5,6 @@ import sys from cement.core import handler, backend, hook from cement.utils import test -if sys.version_info[0] < 3: - import configobj -else: - raise test.SkipTest( - 'ConfigObj does not support Python 3') # pragma: no cover - class JsonConfigObjExtTestCase(test.CementExtTestCase): CONFIG = '''{ diff --git a/tests/ext/yaml_configobj_tests.py b/tests/ext/yaml_configobj_tests.py index 48c4a4d7..f5daf6d8 100644 --- a/tests/ext/yaml_configobj_tests.py +++ b/tests/ext/yaml_configobj_tests.py @@ -6,12 +6,6 @@ import yaml from cement.core import handler, hook from cement.utils import test -if sys.version_info[0] < 3: - import configobj -else: - raise test.SkipTest( - 'ConfigObj does not support Python 3') # pragma: no cover - class YamlConfigObjExtTestCase(test.CementTestCase): CONFIG = '''