Resolves Issue #389

This commit is contained in:
BJ Dierkes 2016-07-07 16:55:24 -05:00
parent c27b298580
commit 8b147b83db
4 changed files with 1 additions and 19 deletions

View File

@ -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;

View File

@ -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]

View File

@ -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 = '''{

View File

@ -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 = '''