Skip to content

Instantly share code, notes, and snippets.

@mitya57
Created May 29, 2015 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitya57/1643a7c1666b650a0de5 to your computer and use it in GitHub Desktop.
Save mitya57/1643a7c1666b650a0de5 to your computer and use it in GitHub Desktop.
sphinxcontrib-programoutput test log
============================= test session starts ==============================
platform linux2 -- Python 2.7.10 -- py-1.4.27 -- pytest-2.7.0
rootdir: /tmp/buildd/sphinxcontrib-programoutput-0.8, inifile:
collected 51 items
tests/test_cache.py .....E
tests/test_command.py ............
tests/test_directive.py EEEEEEEEEEEEEEEEEEEEEE..
tests/test_setup.py E
tests/test_util.py ....
==================================== ERRORS ====================================
_____________________ ERROR at setup of test_cache_pickled _____________________
request = <SubRequest 'app' for <Function 'test_cache_pickled'>>
def pytest_funcarg__app(request):
"""
Sphinx application for the current test.
"""
srcdir = request.getfuncargvalue('srcdir')
outdir = request.getfuncargvalue('outdir')
doctreedir = request.getfuncargvalue('doctreedir')
confoverrides = request.getfuncargvalue('confoverrides')
warningiserror = 'ignore_warnings' not in request.keywords
app = Sphinx(str(srcdir), str(srcdir), str(outdir), str(doctreedir), 'html',
status=None, warning=None, freshenv=None,
> warningiserror=warningiserror, confoverrides=confoverrides)
tests/conftest.py:128:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e527850>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
______________________ ERROR at setup of test_with_spaces ______________________
request = <SubRequest 'doctree' for <Function 'test_with_spaces'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe33082ec50>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
____________________ ERROR at setup of test_standard_error _____________________
request = <SubRequest 'doctree' for <Function 'test_standard_error'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e67f650>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________ ERROR at setup of test_standard_error_disabled ________________
request = <SubRequest 'doctree' for <Function 'test_standard_error_disabled'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfe6390>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_________ ERROR at setup of test_working_directory_defaults_to_srcdir __________
request = <SubRequest 'doctree' for <Function 'test_working_directory_defaults_to_srcdir'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32df9a950>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_________ ERROR at setup of test_working_directory_relative_to_srcdir __________
request = <SubRequest 'doctree' for <Function 'test_working_directory_relative_to_srcdir'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfb6dd0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________ ERROR at setup of test_working_directory_relative_to_document _________
request = <SubRequest 'doctree' for <Function 'test_working_directory_relative_to_document'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32df85e50>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_____________ ERROR at setup of test_working_directory_with_shell ______________
request = <SubRequest 'doctree' for <Function 'test_working_directory_with_shell'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32df9a410>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
______________ ERROR at setup of test_no_expansion_without_shell _______________
request = <SubRequest 'doctree' for <Function 'test_no_expansion_without_shell'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e1201d0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_________________ ERROR at setup of test_expansion_with_shell __________________
request = <SubRequest 'doctree' for <Function 'test_expansion_with_shell'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfa8f90>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________________ ERROR at setup of test_prompt _________________________
request = <SubRequest 'doctree' for <Function 'test_prompt'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e02e710>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________________ ERROR at setup of test_command ________________________
request = <SubRequest 'doctree' for <Function 'test_command'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dbebcd0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
______________ ERROR at setup of test_command_non_default_prompt _______________
request = <SubRequest 'doctree' for <Function 'test_command_non_default_prompt'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e120910>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_______________________ ERROR at setup of test_extraargs _______________________
request = <SubRequest 'doctree' for <Function 'test_extraargs'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfb6a10>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_________________ ERROR at setup of test_extraargs_with_shell __________________
request = <SubRequest 'doctree' for <Function 'test_extraargs_with_shell'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32e02ea50>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_________________ ERROR at setup of test_extraargs_with_prompt _________________
request = <SubRequest 'doctree' for <Function 'test_extraargs_with_prompt'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfc2210>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
__________________ ERROR at setup of test_ellipsis_stop_only ___________________
request = <SubRequest 'doctree' for <Function 'test_ellipsis_stop_only'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfd40d0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________ ERROR at setup of test_ellipsis_negative_stop _________________
request = <SubRequest 'doctree' for <Function 'test_ellipsis_negative_stop'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dec0110>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________ ERROR at setup of test_ellipsis_start_and_stop ________________
request = <SubRequest 'doctree' for <Function 'test_ellipsis_start_and_stop'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfc2b90>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
___________ ERROR at setup of test_ellipsis_start_and_negative_stop ____________
request = <SubRequest 'doctree' for <Function 'test_ellipsis_start_and_negative_stop'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dda2e50>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________ ERROR at setup of test_unexpected_return_code _________________
request = <SubRequest 'app' for <Function 'test_unexpected_return_code'>>
def pytest_funcarg__app(request):
"""
Sphinx application for the current test.
"""
srcdir = request.getfuncargvalue('srcdir')
outdir = request.getfuncargvalue('outdir')
doctreedir = request.getfuncargvalue('doctreedir')
confoverrides = request.getfuncargvalue('confoverrides')
warningiserror = 'ignore_warnings' not in request.keywords
app = Sphinx(str(srcdir), str(srcdir), str(outdir), str(doctreedir), 'html',
status=None, warning=None, freshenv=None,
> warningiserror=warningiserror, confoverrides=confoverrides)
tests/conftest.py:128:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfd4b50>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
_____________ ERROR at setup of test_expected_non_zero_return_code _____________
request = <SubRequest 'doctree' for <Function 'test_expected_non_zero_return_code'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfee3d0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
________________ ERROR at setup of test_prompt_with_return_code ________________
request = <SubRequest 'doctree' for <Function 'test_prompt_with_return_code'>>
def pytest_funcarg__doctree(request):
request.applymarker(pytest.mark.build_app)
> app = request.getfuncargvalue('app')
tests/conftest.py:136:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/_pytest/python.py:1383: in getfuncargvalue
return self._get_active_fixturedef(argname).cached_result[0]
/usr/lib/python2.7/dist-packages/_pytest/python.py:1399: in _get_active_fixturedef
result = self._getfuncargvalue(fixturedef)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1454: in _getfuncargvalue
val = fixturedef.execute(request=subrequest)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1901: in execute
self.yieldctx)
/usr/lib/python2.7/dist-packages/_pytest/python.py:1827: in call_fixture_func
res = fixturefunc(**kwargs)
tests/conftest.py:128: in pytest_funcarg__app
warningiserror=warningiserror, confoverrides=confoverrides)
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32dfef8d0>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
______________________ ERROR at setup of test_init_cache _______________________
request = <SubRequest 'app' for <Function 'test_init_cache'>>
def pytest_funcarg__app(request):
"""
Sphinx application for the current test.
"""
srcdir = request.getfuncargvalue('srcdir')
outdir = request.getfuncargvalue('outdir')
doctreedir = request.getfuncargvalue('doctreedir')
confoverrides = request.getfuncargvalue('confoverrides')
warningiserror = 'ignore_warnings' not in request.keywords
app = Sphinx(str(srcdir), str(srcdir), str(outdir), str(doctreedir), 'html',
status=None, warning=None, freshenv=None,
> warningiserror=warningiserror, confoverrides=confoverrides)
tests/conftest.py:128:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python2.7/dist-packages/sphinx/application.py:188: in __init__
self._init_builder(buildername)
/usr/lib/python2.7/dist-packages/sphinx/application.py:249: in _init_builder
self.builder = builderclass(self)
/usr/lib/python2.7/dist-packages/sphinx/builders/__init__.py:88: in __init__
self.init()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:106: in init
self.init_templates()
/usr/lib/python2.7/dist-packages/sphinx/builders/html.py:141: in init_templates
self.theme = Theme(themename, warn=self.warn)
/usr/lib/python2.7/dist-packages/sphinx/theming.py:105: in __init__
warn("'default' html theme has been renamed to 'classic'. "
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sphinx.application.Sphinx object at 0x7fe32df50690>
message = "'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default."
location = None, prefix = 'WARNING: '
def warn(self, message, location=None, prefix='WARNING: '):
"""Emit a warning.
If *location* is given, it should either be a tuple of (docname, lineno)
or a string describing the location of the warning as well as possible.
*prefix* usually should not be changed.
.. note::
For warnings emitted during parsing, you should use
:meth:`.BuildEnvironment.warn` since that will collect all
warnings during parsing for later output.
"""
if isinstance(location, tuple):
docname, lineno = location
if docname:
location = '%s:%s' % (self.env.doc2path(docname), lineno or '')
else:
location = None
warntext = location and '%s: %s%s\n' % (location, prefix, message) or \
'%s%s\n' % (prefix, message)
if self.warningiserror:
> raise SphinxWarning(warntext)
E SphinxWarning: WARNING: 'default' html theme has been renamed to 'classic'. Please change your html_theme setting either to the new 'alabaster' default theme, or to 'classic' to keep using the old default.
/usr/lib/python2.7/dist-packages/sphinx/application.py:322: SphinxWarning
========= 4 tests deselected by '-knot test_shell and not test_simple' =========
============== 23 passed, 4 deselected, 24 error in 4.78 seconds ===============
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment