Your message dated Mon, 29 Jan 2024 08:38:00 +0000
with message-id <[email protected]>
and subject line Bug#1052866: fixed in python-plaster 1.0-4
has caused the Debian Bug report #1052866,
regarding python-plaster: FTBFS: dh_auto_test: error: pybuild --test 
--test-pytest -i python{version} -p 3.11 returned exit code 13
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1052866: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1052866
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: python-plaster
Version: 1.0-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: [email protected]
Usertags: ftbfs-20230925 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[2]: Entering directory '/<<PKGBUILDDIR>>/docs'
> sphinx-build -b html -d _build/doctrees   . _build/html
> Running Sphinx v5.3.0
> making output directory... done
> building [mo]: targets for 0 po files that are out of date
> building [html]: targets for 5 source files that are out of date
> updating environment: [new config] 5 added, 0 changed, 0 removed
> reading sources... [ 20%] api
> reading sources... [ 40%] changes
> reading sources... [ 60%] contributing
> reading sources... [ 80%] glossary
> reading sources... [100%] index
> 
> looking for now-outdated files... none found
> pickling environment... done
> checking consistency... done
> preparing documents... done
> writing output... [ 20%] api
> writing output... [ 40%] changes
> writing output... [ 60%] contributing
> writing output... [ 80%] glossary
> writing output... [100%] index
> 
> generating indices... genindex py-modindex done
> highlighting module code... [ 20%] plaster.exceptions
> highlighting module code... [ 40%] plaster.interfaces
> highlighting module code... [ 60%] plaster.loaders
> highlighting module code... [ 80%] plaster.protocols
> highlighting module code... [100%] plaster.uri
> 
> writing additional pages... search done
> copying static files... done
> copying extra files... done
> dumping search index in English (code: en)... done
> dumping object inventory... done
> build succeeded.
> 
> The HTML pages are in _build/html.
> 
> Build finished. The HTML pages are in _build/html.
> make[2]: Leaving directory '/<<PKGBUILDDIR>>/docs'
> make[1]: Leaving directory '/<<PKGBUILDDIR>>'
>    dh_auto_test -O--buildsystem=pybuild
> I: pybuild base:291: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11/build; 
> python3.11 -m pytest tests
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.11.5, pytest-7.4.2, pluggy-1.3.0
> rootdir: /<<PKGBUILDDIR>>
> configfile: setup.cfg
> collected 57 items
> 
> tests/test_exceptions.py ..........                                      [ 
> 17%]
> tests/test_loaders.py FFFFFFFF.F..FFFFFFF..F.FFFFF.FF.                   [ 
> 73%]
> tests/test_protocols.py .                                                [ 
> 75%]
> tests/test_uri.py ..............                                         
> [100%]
> 
> =================================== FAILURES 
> ===================================
> _______________________ Test_get_loader.test_simple_uri 
> ________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b969bd10>
> 
>     def test_simple_uri(self):
> >       loader = self._callFUT('development.conf')
> 
> tests/test_loaders.py:10: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+conf://development.conf'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+conf".
> 
> plaster/loaders.py:109: LoaderNotFound
> _______________________ Test_get_loader.test_scheme_uri 
> ________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b969b8d0>
> 
>     def test_scheme_uri(self):
> >       loader = self._callFUT('conf://development.conf')
> 
> tests/test_loaders.py:14: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('conf://development.conf'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "conf".
> 
> plaster/loaders.py:109: LoaderNotFound
> ___________________ Test_get_loader.test_scheme_uri_for_pkg 
> ____________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b969a4d0>
> 
>     def test_scheme_uri_for_pkg(self):
> >       loader = self._callFUT('app1+conf://')
> 
> tests/test_loaders.py:18: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('app1+conf://'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "app1+conf".
> 
> plaster/loaders.py:109: LoaderNotFound
> ___________________ Test_get_loader.test_path_with_extension 
> ___________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b9699fd0>
> 
>     def test_path_with_extension(self):
> >       loader = self._callFUT('development.ini')
> 
> tests/test_loaders.py:22: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> ____________ Test_get_loader.test_path_with_extension_and_protocol 
> _____________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b9699890>
> 
>     def test_path_with_extension_and_protocol(self):
> >       loader = self._callFUT('development.ini', protocols=['wsgi'])
> 
> tests/test_loaders.py:26: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = ['wsgi']
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini", protocol "wsgi".
> 
> plaster/loaders.py:109: LoaderNotFound
> ___________________________ Test_get_loader.test_dup 
> ___________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b969b2d0>
> 
>     def test_dup(self):
>         from plaster.exceptions import MultipleLoadersFound
>         with pytest.raises(MultipleLoadersFound):
> >           self._callFUT('dup://development.ini')
> 
> tests/test_loaders.py:32: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('dup://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "dup".
> 
> plaster/loaders.py:109: LoaderNotFound
> _______________________ Test_get_loader.test_dedup_app1 
> ________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b969b090>
> 
>     def test_dedup_app1(self):
> >       loader = self._callFUT('app1+dup://development.ini')
> 
> tests/test_loaders.py:35: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('app1+dup://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "app1+dup".
> 
> plaster/loaders.py:109: LoaderNotFound
> _______________________ Test_get_loader.test_dedup_app2 
> ________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b96983d0>
> 
>     def test_dedup_app2(self):
> >       loader = self._callFUT('app2+dup://development.ini')
> 
> tests/test_loaders.py:39: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('app2+dup://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "app2+dup".
> 
> plaster/loaders.py:109: LoaderNotFound
> ___________________________ Test_get_loader.test_bad 
> ___________________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b9699110>
> 
>     def test_bad(self):
>         from app1.loaders import BadLoader
> >       loader = self._callFUT('bad:development')
> 
> tests/test_loaders.py:49: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('bad://development'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "bad".
> 
> plaster/loaders.py:109: LoaderNotFound
> _________________ Test_get_loader.test_fallback_non_pkg_scheme 
> _________________
> 
> self = <tests.test_loaders.Test_get_loader object at 0x7fd5b96818d0>
> 
>     def test_fallback_non_pkg_scheme(self):
> >       loader = self._callFUT('yaml+bar://development.yml')
> 
> tests/test_loaders.py:62: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:7: in _callFUT
>     return get_loader(*args, **kwargs)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('yaml+bar://development.yml'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "yaml+bar".
> 
> plaster/loaders.py:109: LoaderNotFound
> ______________________ Test_find_loaders.test_simple_uri 
> _______________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b96820d0>
> 
>     def test_simple_uri(self):
>         loaders = self._callFUT('conf')
> >       assert len(loaders) == 1
> E       assert 0 == 1
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:74: AssertionError
> ________________ Test_find_loaders.test_case_insensitive_scheme 
> ________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b9681f10>
> 
>     def test_case_insensitive_scheme(self):
>         loaders = self._callFUT('CONF')
> >       assert len(loaders) == 1
> E       assert 0 == 1
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:81: AssertionError
> __________________ Test_find_loaders.test_scheme_specific_uri 
> __________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b9681710>
> 
>     def test_scheme_specific_uri(self):
>         loaders = self._callFUT('ini')
> >       assert len(loaders) == 1
> E       assert 0 == 1
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:88: AssertionError
> _________________ Test_find_loaders.test_multiple_yaml_loaders 
> _________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b9681150>
> 
>     def test_multiple_yaml_loaders(self):
>         loaders = self._callFUT('dup')
> >       assert len(loaders) == 2
> E       assert 0 == 2
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:95: AssertionError
> _____________________ Test_find_loaders.test_one_protocol 
> ______________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b9680c90>
> 
>     def test_one_protocol(self):
>         loaders = self._callFUT('ini', protocols=['wsgi'])
> >       assert len(loaders) == 1
> E       assert 0 == 1
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:102: AssertionError
> __________________ Test_find_loaders.test_multiple_protocols 
> ___________________
> 
> self = <tests.test_loaders.Test_find_loaders object at 0x7fd5b9680810>
> 
>     def test_multiple_protocols(self):
>         loaders = self._callFUT('ini', protocols=['wsgi', 'dummy1'])
> >       assert len(loaders) == 1
> E       assert 0 == 1
> E        +  where 0 = len([])
> 
> tests/test_loaders.py:108: AssertionError
> __________________________ Test_get_sections.test_it 
> ___________________________
> 
> self = <tests.test_loaders.Test_get_sections object at 0x7fd5b96824d0>
> 
>     def test_it(self):
> >       result = self._callFUT('development.ini')
> 
> tests/test_loaders.py:128: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:125: in _callFUT
>     return get_sections(config_uri)
> plaster/loaders.py:29: in get_sections
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> _____________________ Test_get_settings.test_it_explicit_a 
> _____________________
> 
> self = <tests.test_loaders.Test_get_settings object at 0x7fd5b9680c50>
> 
>     def test_it_explicit_a(self):
> >       result = self._callFUT('development.ini', 'a')
> 
> tests/test_loaders.py:143: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:140: in _callFUT
>     return get_settings(config_uri, section=section, defaults=defaults)
> plaster/loaders.py:59: in get_settings
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> _____________________ Test_get_settings.test_it_explicit_b 
> _____________________
> 
> self = <tests.test_loaders.Test_get_settings object at 0x7fd5b96a9010>
> 
>     def test_it_explicit_b(self):
> >       result = self._callFUT('development.ini', 'b')
> 
> tests/test_loaders.py:147: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:140: in _callFUT
>     return get_settings(config_uri, section=section, defaults=defaults)
> plaster/loaders.py:59: in get_settings
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> ______________________ Test_get_settings.test_it_fragment 
> ______________________
> 
> self = <tests.test_loaders.Test_get_settings object at 0x7fd5b96a8b10>
> 
>     def test_it_fragment(self):
> >       result = self._callFUT('development.ini#a')
> 
> tests/test_loaders.py:151: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:140: in _callFUT
>     return get_settings(config_uri, section=section, defaults=defaults)
> plaster/loaders.py:59: in get_settings
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini#a'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> _______________________ Test_get_settings.test_defaults 
> ________________________
> 
> self = <tests.test_loaders.Test_get_settings object at 0x7fd5b96aa190>
> 
>     def test_defaults(self):
> >       result = self._callFUT('development.ini', 'a', {'baz': 'foo'})
> 
> tests/test_loaders.py:155: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:140: in _callFUT
>     return get_settings(config_uri, section=section, defaults=defaults)
> plaster/loaders.py:59: in get_settings
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> ____________________ Test_get_settings.test_invalid_section 
> ____________________
> 
> self = <tests.test_loaders.Test_get_settings object at 0x7fd5b96abb90>
> 
>     def test_invalid_section(self):
> >       result = self._callFUT('development.ini', 'c')
> 
> tests/test_loaders.py:159: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:140: in _callFUT
>     return get_settings(config_uri, section=section, defaults=defaults)
> plaster/loaders.py:59: in get_settings
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> __________________________ Test_setup_logging.test_it 
> __________________________
> 
> self = <tests.test_loaders.Test_setup_logging object at 0x7fd5b96a8950>
> 
>     def test_it(self):
> >       loader = self._makeOne('development.ini#a')
> 
> tests/test_loaders.py:178: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:171: in _makeOne
>     return get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini#a'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> _____________________ Test_setup_logging.test_it_top_level 
> _____________________
> 
> self = <tests.test_loaders.Test_setup_logging object at 0x7fd5b96a9d10>
> 
>     def test_it_top_level(self):
> >       self._callFUT('development.ini#a')
> 
> tests/test_loaders.py:184: 
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> tests/test_loaders.py:175: in _callFUT
>     return setup_logging(config_uri, defaults=defaults)
> plaster/loaders.py:80: in setup_logging
>     loader = get_loader(config_uri)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> config_uri = PlasterURL('file+ini://development.ini#a'), protocols = None
> 
>     def get_loader(config_uri, protocols=None):
>         """
>         Find a :class:`plaster.ILoader` object capable of handling 
> ``config_uri``.
>     
>         :param config_uri: Anything that can be parsed by
>             :func:`plaster.parse_uri`.
>     
>         :param protocols: Zero or more :term:`loader protocol` identifiers 
> that
>             the loader must implement to match the desired ``config_uri``.
>     
>         :returns: A :class:`plaster.ILoader` object.
>         :raises plaster.LoaderNotFound: If no loader could be found.
>         :raises plaster.MultipleLoadersFound: If multiple loaders match the
>             requested criteria. If this happens, you can disambiguate the 
> lookup
>             by appending the package name to the scheme for the loader you 
> wish
>             to use. For example if ``ini`` is ambiguous then specify
>             ``ini+myapp`` to use the ini loader from the ``myapp`` package.
>     
>         """
>         config_uri = parse_uri(config_uri)
>         requested_scheme = config_uri.scheme
>     
>         matched_loaders = find_loaders(requested_scheme, protocols=protocols)
>     
>         if len(matched_loaders) < 1:
> >           raise LoaderNotFound(requested_scheme, protocols=protocols)
> E           plaster.exceptions.LoaderNotFound: Could not find a matching 
> loader for the scheme "file+ini".
> 
> plaster/loaders.py:109: LoaderNotFound
> =============================== warnings summary 
> ===============================
> tests/conftest.py:2
>   /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11/build/tests/conftest.py:2: 
> DeprecationWarning: pkg_resources is deprecated as an API. See 
> https://setuptools.pypa.io/en/latest/pkg_resources.html
>     import pkg_resources
> 
> -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> =========================== short test summary info 
> ============================
> FAILED tests/test_loaders.py::Test_get_loader::test_simple_uri - 
> plaster.exce...
> FAILED tests/test_loaders.py::Test_get_loader::test_scheme_uri - 
> plaster.exce...
> FAILED tests/test_loaders.py::Test_get_loader::test_scheme_uri_for_pkg - 
> plas...
> FAILED tests/test_loaders.py::Test_get_loader::test_path_with_extension - 
> pla...
> FAILED 
> tests/test_loaders.py::Test_get_loader::test_path_with_extension_and_protocol
> FAILED tests/test_loaders.py::Test_get_loader::test_dup - 
> plaster.exceptions....
> FAILED tests/test_loaders.py::Test_get_loader::test_dedup_app1 - 
> plaster.exce...
> FAILED tests/test_loaders.py::Test_get_loader::test_dedup_app2 - 
> plaster.exce...
> FAILED tests/test_loaders.py::Test_get_loader::test_bad - 
> plaster.exceptions....
> FAILED tests/test_loaders.py::Test_get_loader::test_fallback_non_pkg_scheme
> FAILED tests/test_loaders.py::Test_find_loaders::test_simple_uri - assert 0 
> == 1
> FAILED tests/test_loaders.py::Test_find_loaders::test_case_insensitive_scheme
> FAILED tests/test_loaders.py::Test_find_loaders::test_scheme_specific_uri - 
> a...
> FAILED tests/test_loaders.py::Test_find_loaders::test_multiple_yaml_loaders
> FAILED tests/test_loaders.py::Test_find_loaders::test_one_protocol - assert 
> 0...
> FAILED tests/test_loaders.py::Test_find_loaders::test_multiple_protocols - 
> as...
> FAILED tests/test_loaders.py::Test_get_sections::test_it - 
> plaster.exceptions...
> FAILED tests/test_loaders.py::Test_get_settings::test_it_explicit_a - 
> plaster...
> FAILED tests/test_loaders.py::Test_get_settings::test_it_explicit_b - 
> plaster...
> FAILED tests/test_loaders.py::Test_get_settings::test_it_fragment - 
> plaster.e...
> FAILED tests/test_loaders.py::Test_get_settings::test_defaults - 
> plaster.exce...
> FAILED tests/test_loaders.py::Test_get_settings::test_invalid_section - 
> plast...
> FAILED tests/test_loaders.py::Test_setup_logging::test_it - 
> plaster.exception...
> FAILED tests/test_loaders.py::Test_setup_logging::test_it_top_level - 
> plaster...
> =================== 24 failed, 33 passed, 1 warning in 0.37s 
> ===================
> E: pybuild pybuild:395: test: plugin distutils failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.11/build; python3.11 -m pytest tests
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.11 
> returned exit code 13


The full build log is available from:
http://qa-logs.debian.net/2023/09/25/python-plaster_1.0-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20230925;[email protected]
or:
https://udd.debian.org/bugs/?release=na&merged=ign&fnewerval=7&flastmodval=7&fusertag=only&fusertagtag=ftbfs-20230925&[email protected]&allbugs=1&cseverity=1&ctags=1&caffected=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.

--- End Message ---
--- Begin Message ---
Source: python-plaster
Source-Version: 1.0-4
Done: Andreas Tille <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-plaster, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Tille <[email protected]> (supplier of updated python-plaster package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 29 Jan 2024 09:01:25 +0100
Source: python-plaster
Architecture: source
Version: 1.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Andreas Tille <[email protected]>
Closes: 1047867 1052866
Changes:
 python-plaster (1.0-4) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Debian Janitor ]
   * Bump debhelper from old 12 to 13.
   * Set upstream metadata fields: Bug-Database, Bug-Submit.
 .
   [ Andreas Tille ]
   * Standards-Version: 4.6.2 (routine-update)
   * Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
   * Add salsa-ci file (routine-update)
   * Rules-Requires-Root: no (routine-update)
   * Set upstream metadata fields: Repository.
   * watch file standard 4 (routine-update)
   * Make sure *.egg-info files of test examples will not be removed by
     dh-python's clean target.  The solution is pretty hackish but finally
     works
     Closes: #1052866
   * Fix clean target
     Closes: #1047867
Checksums-Sha1:
 bd7f72d7514583a438106a6f864cc46eed33967d 2241 python-plaster_1.0-4.dsc
 9babcac0340e03371a091bbbbe672908436c9122 19936 
python-plaster_1.0-4.debian.tar.xz
 055089e53125cd4ac957294f9b228fdcc833682c 8376 
python-plaster_1.0-4_amd64.buildinfo
Checksums-Sha256:
 9b999c523b2e2871382c37c058ede27e8d3461596ab24eea0faa2f290b876f5f 2241 
python-plaster_1.0-4.dsc
 35d3447e489a4003f59928f62bec5a78f8190f1cc2451c9b6e731496b407b789 19936 
python-plaster_1.0-4.debian.tar.xz
 0b36badb8885732451630da2f94c18e80f34b75ee441e0cb4d2c34b9854b3341 8376 
python-plaster_1.0-4_amd64.buildinfo
Files:
 358db30ed1f06cc80789cbf042f9d9af 2241 python optional python-plaster_1.0-4.dsc
 264ab8458298b489ee1170afd8a00b37 19936 python optional 
python-plaster_1.0-4.debian.tar.xz
 6817527c7f94cd4a0b94db4101c1a562 8376 python optional 
python-plaster_1.0-4_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJFBAEBCgAvFiEE8fAHMgoDVUHwpmPKV4oElNHGRtEFAmW3XI4RHHRpbGxlQGRl
Ymlhbi5vcmcACgkQV4oElNHGRtE3Og//dlH+YiNJY83X7rpYC+kjDgSOLQXw+Gh3
hMgorWjIlA4v0WQeyjA09be4iCk2wWCEeztanHnD55dLK6atsT7UjdjZF+MxDAv4
d1ZOIqsmIDQddmr5KQVPS5waP/rL76KmhKtJBqm0E2bu1rKNCl6hc1bNDfdgmiaD
uv1uxGknX2RrANGyRlxXP/jGT6edJacMyJDrGzgGclr1ojw/oLZq8oZpyNoHw1FG
OhXCptlil8ZY4sRiUP3Qi1Y9aNaIiQNQeZxVBxy0JcMhb4WaVksAu6w4pyQ8OStW
Tg5rHyYKHRoCBFl+Ku0KrP1SELpgQ/NOxd9tdykVCNmecMZX0x+go2dsptEP/Bnf
WATKZVPmIiEP7j3OMTdHjbEqdTPEex7hHOE9vhFY+JpxGqR58vVlRjgF9YsztovZ
nuGNErY6fMTOqfDJ0axzwzr5plo7BR9+6VTzRSaS8a7WIMdIBNHLIEeppyBuVdS0
KrIwdJXRIszzdkYomp1KGBhfRJyM9pE9LO6KjlXGu72P62WjB4LP6BLVRkXiR9Q/
eVeZWTP3Ml+dqlXFLaDxBy94IAMZFiN9nVEl3RoZ5amMG5VdYrLeBQfMSgBUqNlp
gR4C1ehYWDMlfGtQrxOP5JSaAE8KDfFoltpZ2H73z4QKPs36H7l4g91Pxzy0gJOG
NYIDNFvwDJ8=
=CiZa
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to