Your message dated Mon, 04 Jan 2021 04:49:07 +0000
with message-id <e1kwhnn-0009uh...@fasolo.debian.org>
and subject line Bug#977081: fixed in pytest-rerunfailures 9.1.1-1
has caused the Debian Bug report #977081,
regarding pytest-rerunfailures FTBFS with pytest 6
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 ow...@bugs.debian.org
immediately.)


-- 
977081: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=977081
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: pytest-rerunfailures
Version: 8.0-2
Severity: important
User: pyt...@packages.debian.org
Usertags: pytest-v6

Hi,

pytest-rerunfailures FTBFS with pytest 6 in experimental. The pytest
changelog may offer clues as to why:

    https://docs.pytest.org/en/stable/changelog.html

The error log below has more details.

> I: pybuild base:232: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build; python3.9 
> -m pytest 
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.9.1, pytest-6.0.2, py-1.9.0, pluggy-0.13.0
> rootdir: /<<PKGBUILDDIR>>
> plugins: rerunfailures-8.0
> collected 37 items
> 
> test_pytest_rerunfailures.py ..............................FFFF...       
> [100%]
> 
> =================================== FAILURES 
> ===================================
> _______________ test_rerun_on_setup_class_with_error_with_reruns 
> _______________
> 
> testdir = <Testdir 
> local('/tmp/pytest-of-christian/pytest-0/test_rerun_on_setup_class_with_error_with_reruns0')>
> 
>     def test_rerun_on_setup_class_with_error_with_reruns(testdir):
>         """
>          Case: setup_class throwing error on the first execution for 
> parametrized test
>         """
>         testdir.makepyfile("""
>             import pytest
>     
>             pass_fixture = False
>     
>             class TestFoo(object):
>                 @classmethod
>                 def setup_class(cls):
>                     global pass_fixture
>                     if not pass_fixture:
>                         pass_fixture = True
>                         assert False
>                     assert True
>                 @pytest.mark.parametrize('param', [1, 2, 3])
>                 def test_pass(self, param):
>                     assert param""")
>         result = testdir.runpytest('--reruns', '1')
>>       assert_outcomes(result, passed=3, rerun=1)
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:294:
>  
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:27:
>  in assert_outcomes
>     outcomes = result.parseoutcomes()
> /usr/lib/python3/dist-packages/_pytest/pytester.py:461: in parseoutcomes
>     return self.parse_summary_nouns(self.outlines)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> cls = <class '_pytest.pytester.RunResult'>
> lines = ['============================= test session starts 
> ==============================', 'platform linux -- Python 3.9.1, 
> ...ytest-0/test_rerun_on_setup_class_with_error_with_reruns0', 'plugins: 
> rerunfailures-8.0', 'collected 3 items', '', ...]
> 
>     @classmethod
>     def parse_summary_nouns(cls, lines) -> Dict[str, int]:
>         """Extracts the nouns from a pytest terminal summary line.
>     
>         It always returns the plural noun for consistency::
>     
>             ======= 1 failed, 1 passed, 1 warning, 1 error in 0.13s ====
>     
>         Will return ``{"failed": 1, "passed": 1, "warnings": 1, "errors": 1}``
>         """
>         for line in reversed(lines):
>             if rex_session_duration.search(line):
>                 outcomes = rex_outcome.findall(line)
>                 ret = {noun: int(count) for (count, noun) in outcomes}
>                 break
>         else:
>>           raise ValueError("Pytest terminal summary report not found")
> E           ValueError: Pytest terminal summary report not found
> 
> /usr/lib/python3/dist-packages/_pytest/pytester.py:479: ValueError
> ----------------------------- Captured stdout call 
> -----------------------------
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.9.1, pytest-6.0.2, py-1.9.0, pluggy-0.13.0
> rootdir: 
> /tmp/pytest-of-christian/pytest-0/test_rerun_on_setup_class_with_error_with_reruns0
> plugins: rerunfailures-8.0
> collected 3 items
> 
> test_rerun_on_setup_class_with_error_with_reruns.py R
> INTERNALERROR> Traceback (most recent call last):
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 240, in wrap_session
> INTERNALERROR>     session.exitstatus = doit(config, session) or 0
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 296, in _main
> INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 321, in pytest_runtestloop
> INTERNALERROR>     item.config.hook.pytest_runtest_protocol(item=item, 
> nextitem=nextitem)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 194, in pytest_runtest_protocol
> INTERNALERROR>     _remove_cached_results_from_failed_fixtures(item)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 135, in _remove_cached_results_from_failed_fixtures
> INTERNALERROR>     result, cache_key, err = getattr(fixture_def, 
> cached_result)
> INTERNALERROR> TypeError: cannot unpack non-iterable NoneType object
> ----------------------------- Captured stderr call 
> -----------------------------
> Traceback (most recent call last):
>   File "/usr/lib/python3/dist-packages/_pytest/pytester.py", line 1004, in 
> runpytest_inprocess
>     reprec = self.inline_run(*args, **kwargs)
>   File "/usr/lib/python3/dist-packages/_pytest/pytester.py", line 970, in 
> inline_run
>     ret = pytest.main(list(args), plugins=plugins)
>   File "/usr/lib/python3/dist-packages/_pytest/config/__init__.py", line 157, 
> in main
>     ret = config.hook.pytest_cmdline_main(
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 208, in 
> _multicall
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 289, in 
> pytest_cmdline_main
>     return wrap_session(config, _main)
>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 277, in 
> wrap_session
>     config.hook.pytest_sessionfinish(
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 335, in 
> traced_hookexec
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 52, in 
> from_call
>     result = func()
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 333, in 
> <lambda>
>     outcome = _Result.from_call(lambda: oldcall(hook, hook_impls, kwargs))
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 203, in 
> _multicall
>     gen.send(outcome)
>   File "/usr/lib/python3/dist-packages/_pytest/terminal.py", line 803, in 
> pytest_sessionfinish
>     outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 94, in 
> pytest_sessionfinish
>     session._setupstate.teardown_all()
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 395, in 
> teardown_all
>     self._pop_and_teardown()
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 370, in 
> _pop_and_teardown
>     self._teardown_with_finalization(colitem)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 388, in 
> _teardown_with_finalization
>     self._callfinalizers(colitem)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 385, in 
> _callfinalizers
>     raise exc
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 378, in 
> _callfinalizers
>     fin()
>   File "/usr/lib/python3/dist-packages/_pytest/fixtures.py", line 1026, in 
> finish
>     hook.pytest_fixture_post_finalizer(fixturedef=self, request=request)
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 335, in 
> traced_hookexec
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 52, in 
> from_call
>     result = func()
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 333, in 
> <lambda>
>     outcome = _Result.from_call(lambda: oldcall(hook, hook_impls, kwargs))
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 208, in 
> _multicall
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/setuponly.py", line 51, in 
> pytest_fixture_post_finalizer
>     if fixturedef.cached_result is not None:
> AttributeError: 'FixtureDef' object has no attribute 'cached_result'
> ___________ test_rerun_on_class_scope_fixture_with_error_with_reruns 
> ___________
> 
> testdir = <Testdir 
> local('/tmp/pytest-of-christian/pytest-0/test_rerun_on_class_scope_fixture_with_error_with_reruns0')>
> 
>     def test_rerun_on_class_scope_fixture_with_error_with_reruns(testdir):
>         """
>         Case: Class scope fixture throwing error on the first execution for 
> parametrized test
>         """
>         testdir.makepyfile("""
>             import pytest
>     
>             pass_fixture = False
>     
>             class TestFoo(object):
>     
>                 @pytest.fixture(scope="class")
>                 def setup_fixture(self):
>                     global pass_fixture
>                     if not pass_fixture:
>                         pass_fixture = True
>                         assert False
>                     assert True
>                 @pytest.mark.parametrize('param', [1, 2, 3])
>                 def test_pass(self, setup_fixture, param):
>                     assert param""")
>         result = testdir.runpytest('--reruns', '1')
>>       assert_outcomes(result, passed=3, rerun=1)
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:319:
>  
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:27:
>  in assert_outcomes
>     outcomes = result.parseoutcomes()
> /usr/lib/python3/dist-packages/_pytest/pytester.py:461: in parseoutcomes
>     return self.parse_summary_nouns(self.outlines)
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> cls = <class '_pytest.pytester.RunResult'>
> lines = ['============================= test session starts 
> ==============================', 'platform linux -- Python 3.9.1, 
> ...test_rerun_on_class_scope_fixture_with_error_with_reruns0', 'plugins: 
> rerunfailures-8.0', 'collected 3 items', '', ...]
> 
>     @classmethod
>     def parse_summary_nouns(cls, lines) -> Dict[str, int]:
>         """Extracts the nouns from a pytest terminal summary line.
>     
>         It always returns the plural noun for consistency::
>     
>             ======= 1 failed, 1 passed, 1 warning, 1 error in 0.13s ====
>     
>         Will return ``{"failed": 1, "passed": 1, "warnings": 1, "errors": 1}``
>         """
>         for line in reversed(lines):
>             if rex_session_duration.search(line):
>                 outcomes = rex_outcome.findall(line)
>                 ret = {noun: int(count) for (count, noun) in outcomes}
>                 break
>         else:
>>           raise ValueError("Pytest terminal summary report not found")
> E           ValueError: Pytest terminal summary report not found
> 
> /usr/lib/python3/dist-packages/_pytest/pytester.py:479: ValueError
> ----------------------------- Captured stdout call 
> -----------------------------
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.9.1, pytest-6.0.2, py-1.9.0, pluggy-0.13.0
> rootdir: 
> /tmp/pytest-of-christian/pytest-0/test_rerun_on_class_scope_fixture_with_error_with_reruns0
> plugins: rerunfailures-8.0
> collected 3 items
> 
> test_rerun_on_class_scope_fixture_with_error_with_reruns.py R
> INTERNALERROR> Traceback (most recent call last):
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 240, in wrap_session
> INTERNALERROR>     session.exitstatus = doit(config, session) or 0
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 296, in _main
> INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 321, in pytest_runtestloop
> INTERNALERROR>     item.config.hook.pytest_runtest_protocol(item=item, 
> nextitem=nextitem)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 194, in pytest_runtest_protocol
> INTERNALERROR>     _remove_cached_results_from_failed_fixtures(item)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 135, in _remove_cached_results_from_failed_fixtures
> INTERNALERROR>     result, cache_key, err = getattr(fixture_def, 
> cached_result)
> INTERNALERROR> TypeError: cannot unpack non-iterable NoneType object
> ----------------------------- Captured stderr call 
> -----------------------------
> Traceback (most recent call last):
>   File "/usr/lib/python3/dist-packages/_pytest/pytester.py", line 1004, in 
> runpytest_inprocess
>     reprec = self.inline_run(*args, **kwargs)
>   File "/usr/lib/python3/dist-packages/_pytest/pytester.py", line 970, in 
> inline_run
>     ret = pytest.main(list(args), plugins=plugins)
>   File "/usr/lib/python3/dist-packages/_pytest/config/__init__.py", line 157, 
> in main
>     ret = config.hook.pytest_cmdline_main(
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 208, in 
> _multicall
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 289, in 
> pytest_cmdline_main
>     return wrap_session(config, _main)
>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 277, in 
> wrap_session
>     config.hook.pytest_sessionfinish(
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 335, in 
> traced_hookexec
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 52, in 
> from_call
>     result = func()
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 333, in 
> <lambda>
>     outcome = _Result.from_call(lambda: oldcall(hook, hook_impls, kwargs))
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 203, in 
> _multicall
>     gen.send(outcome)
>   File "/usr/lib/python3/dist-packages/_pytest/terminal.py", line 803, in 
> pytest_sessionfinish
>     outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 94, in 
> pytest_sessionfinish
>     session._setupstate.teardown_all()
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 395, in 
> teardown_all
>     self._pop_and_teardown()
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 370, in 
> _pop_and_teardown
>     self._teardown_with_finalization(colitem)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 388, in 
> _teardown_with_finalization
>     self._callfinalizers(colitem)
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 385, in 
> _callfinalizers
>     raise exc
>   File "/usr/lib/python3/dist-packages/_pytest/runner.py", line 378, in 
> _callfinalizers
>     fin()
>   File "/usr/lib/python3/dist-packages/_pytest/fixtures.py", line 1026, in 
> finish
>     hook.pytest_fixture_post_finalizer(fixturedef=self, request=request)
>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 286, in __call__
>     return self._hookexec(self, self.get_hookimpls(), kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 92, in 
> _hookexec
>     return self._inner_hookexec(hook, methods, kwargs)
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 335, in 
> traced_hookexec
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 52, in 
> from_call
>     result = func()
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 333, in 
> <lambda>
>     outcome = _Result.from_call(lambda: oldcall(hook, hook_impls, kwargs))
>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", line 83, in 
> <lambda>
>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 208, in 
> _multicall
>     return outcome.get_result()
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 80, in 
> get_result
>     raise ex[1].with_traceback(ex[2])
>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", line 187, in 
> _multicall
>     res = hook_impl.function(*args)
>   File "/usr/lib/python3/dist-packages/_pytest/setuponly.py", line 51, in 
> pytest_fixture_post_finalizer
>     if fixturedef.cached_result is not None:
> AttributeError: 'FixtureDef' object has no attribute 'cached_result'
> ___________________ test_rerun_on_module_fixture_with_reruns 
> ___________________
> 
> testdir = <Testdir 
> local('/tmp/pytest-of-christian/pytest-0/test_rerun_on_module_fixture_with_reruns0')>
> 
>     def test_rerun_on_module_fixture_with_reruns(testdir):
>         """
>         Case: Module scope fixture is not re-executed when class scope 
> fixture throwing error on the first execution
>         for parametrized test
>         """
>         testdir.makepyfile("""
>             import pytest
>     
>             pass_fixture = False
>     
>             @pytest.fixture(scope='module')
>             def module_fixture():
>                 assert not pass_fixture
>     
>             class TestFoo(object):
>                 @pytest.fixture(scope="class")
>                 def setup_fixture(self):
>                     global pass_fixture
>                     if not pass_fixture:
>                         pass_fixture = True
>                         assert False
>                     assert True
>                 def test_pass_1(self, module_fixture, setup_fixture):
>                     assert True
>     
>                 def test_pass_2(self, module_fixture, setup_fixture):
>                     assert True""")
>         result = testdir.runpytest('--reruns', '1')
>>       assert_outcomes(result, passed=2, rerun=1)
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:350:
>  
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> result = <RunResult ret=ExitCode.INTERNAL_ERROR len(stdout.lines)=61 
> len(stderr.lines)=0 duration=0.30s>
> passed = 2, skipped = 0, failed = 0, error = 0, xfailed = 0, xpassed = 0
> rerun = 1
> 
>     def assert_outcomes(result, passed=1, skipped=0, failed=0, error=0, 
> xfailed=0,
>                         xpassed=0, rerun=0):
>         outcomes = result.parseoutcomes()
>>       assert outcomes.get('passed', 0) == passed
> E       AssertionError: assert 0 == 2
> E        +  where 0 = <built-in method get of dict object at 
> 0x7f2a77e0a980>('passed', 0)
> E        +    where <built-in method get of dict object at 0x7f2a77e0a980> = 
> {'errors': 1, 'rerun': 2}.get
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:28:
>  AssertionError
> ----------------------------- Captured stdout call 
> -----------------------------
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.9.1, pytest-6.0.2, py-1.9.0, pluggy-0.13.0
> rootdir: 
> /tmp/pytest-of-christian/pytest-0/test_rerun_on_module_fixture_with_reruns0
> plugins: rerunfailures-8.0
> collected 2 items
> 
> test_rerun_on_module_fixture_with_reruns.py RER
> INTERNALERROR> Traceback (most recent call last):
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 240, in wrap_session
> INTERNALERROR>     session.exitstatus = doit(config, session) or 0
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 296, in _main
> INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 321, in pytest_runtestloop
> INTERNALERROR>     item.config.hook.pytest_runtest_protocol(item=item, 
> nextitem=nextitem)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 194, in pytest_runtest_protocol
> INTERNALERROR>     _remove_cached_results_from_failed_fixtures(item)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 135, in _remove_cached_results_from_failed_fixtures
> INTERNALERROR>     result, cache_key, err = getattr(fixture_def, 
> cached_result)
> INTERNALERROR> TypeError: cannot unpack non-iterable NoneType object
> 
> ========================== 1 error, 2 rerun in 0.28s 
> ===========================
> __________________ test_rerun_on_session_fixture_with_reruns 
> ___________________
> 
> testdir = <Testdir 
> local('/tmp/pytest-of-christian/pytest-0/test_rerun_on_session_fixture_with_reruns0')>
> 
>     def test_rerun_on_session_fixture_with_reruns(testdir):
>         """
>         Case: Module scope fixture is not re-executed when class scope 
> fixture throwing error on the first execution
>         for parametrized test
>         """
>         testdir.makepyfile("""
>             import pytest
>     
>             pass_fixture = False
>     
>             @pytest.fixture(scope='session')
>             def session_fixture():
>                 assert not pass_fixture
>     
>             class TestFoo(object):
>                 @pytest.fixture(scope="class")
>                 def setup_fixture(self):
>                     global pass_fixture
>                     if not pass_fixture:
>                         pass_fixture = True
>                         assert False
>                     assert True
>     
>                 def test_pass_1(self, session_fixture, setup_fixture):
>                     assert True
>                 def test_pass_2(self, session_fixture, setup_fixture):
>                     assert True""")
>         result = testdir.runpytest('--reruns', '1')
>>       assert_outcomes(result, passed=2, rerun=1)
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:381:
>  
> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
> _ 
> 
> result = <RunResult ret=ExitCode.INTERNAL_ERROR len(stdout.lines)=61 
> len(stderr.lines)=0 duration=0.30s>
> passed = 2, skipped = 0, failed = 0, error = 0, xfailed = 0, xpassed = 0
> rerun = 1
> 
>     def assert_outcomes(result, passed=1, skipped=0, failed=0, error=0, 
> xfailed=0,
>                         xpassed=0, rerun=0):
>         outcomes = result.parseoutcomes()
>>       assert outcomes.get('passed', 0) == passed
> E       AssertionError: assert 0 == 2
> E        +  where 0 = <built-in method get of dict object at 
> 0x7f2a776ba900>('passed', 0)
> E        +    where <built-in method get of dict object at 0x7f2a776ba900> = 
> {'errors': 1, 'rerun': 2}.get
> 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/test_pytest_rerunfailures.py:28:
>  AssertionError
> ----------------------------- Captured stdout call 
> -----------------------------
> ============================= test session starts 
> ==============================
> platform linux -- Python 3.9.1, pytest-6.0.2, py-1.9.0, pluggy-0.13.0
> rootdir: 
> /tmp/pytest-of-christian/pytest-0/test_rerun_on_session_fixture_with_reruns0
> plugins: rerunfailures-8.0
> collected 2 items
> 
> test_rerun_on_session_fixture_with_reruns.py RER
> INTERNALERROR> Traceback (most recent call last):
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 240, in wrap_session
> INTERNALERROR>     session.exitstatus = doit(config, session) or 0
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 296, in _main
> INTERNALERROR>     config.hook.pytest_runtestloop(session=session)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/_pytest/main.py", line 
> 321, in pytest_runtestloop
> INTERNALERROR>     item.config.hook.pytest_runtest_protocol(item=item, 
> nextitem=nextitem)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/hooks.py", line 
> 286, in __call__
> INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 92, in _hookexec
> INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 335, in traced_hookexec
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 52, in from_call
> INTERNALERROR>     result = func()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 333, in <lambda>
> INTERNALERROR>     outcome = _Result.from_call(lambda: oldcall(hook, 
> hook_impls, kwargs))
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/manager.py", 
> line 83, in <lambda>
> INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: 
> hook.multicall(
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 208, in _multicall
> INTERNALERROR>     return outcome.get_result()
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 80, in get_result
> INTERNALERROR>     raise ex[1].with_traceback(ex[2])
> INTERNALERROR>   File "/usr/lib/python3/dist-packages/pluggy/callers.py", 
> line 187, in _multicall
> INTERNALERROR>     res = hook_impl.function(*args)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 194, in pytest_runtest_protocol
> INTERNALERROR>     _remove_cached_results_from_failed_fixtures(item)
> INTERNALERROR>   File 
> "/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build/pytest_rerunfailures.py",
>  line 135, in _remove_cached_results_from_failed_fixtures
> INTERNALERROR>     result, cache_key, err = getattr(fixture_def, 
> cached_result)
> INTERNALERROR> TypeError: cannot unpack non-iterable NoneType object
> 
> ========================== 1 error, 2 rerun in 0.28s 
> ===========================
> =========================== short test summary info 
> ============================
> FAILED 
> test_pytest_rerunfailures.py::test_rerun_on_setup_class_with_error_with_reruns
> FAILED 
> test_pytest_rerunfailures.py::test_rerun_on_class_scope_fixture_with_error_with_reruns
> FAILED test_pytest_rerunfailures.py::test_rerun_on_module_fixture_with_reruns
> FAILED test_pytest_rerunfailures.py::test_rerun_on_session_fixture_with_reruns
> ========================= 4 failed, 33 passed in 1.67s 
> =========================
> E: pybuild pybuild:353: test: plugin distutils failed with: exit code=1: cd 
> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9_pytest-rerunfailures/build; python3.9 
> -m pytest 
> dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.9 
> returned exit code 13
> make: *** [debian/rules:7: binary] Error 25
> dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 
> 2

--- End Message ---
--- Begin Message ---
Source: pytest-rerunfailures
Source-Version: 9.1.1-1
Done: Paul Wise <p...@debian.org>

We believe that the bug you reported is fixed in the latest version of
pytest-rerunfailures, 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 977...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Paul Wise <p...@debian.org> (supplier of updated pytest-rerunfailures 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 ftpmas...@ftp-master.debian.org)


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

Format: 1.8
Date: Mon, 04 Jan 2021 12:23:55 +0800
Source: pytest-rerunfailures
Architecture: source
Version: 9.1.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Paul Wise <p...@debian.org>
Closes: 977081
Changes:
 pytest-rerunfailures (9.1.1-1) unstable; urgency=medium
 .
   * New upstream release.
     - Increases pytest requirement to 5.0
     - Fixes FTBFS with pytest 6 (Closes: #977081)
   * Update copyright for new year and version
   * Bump Standards-Version, no changes needed
Checksums-Sha1:
 7984bc0a6ba840359d730b571ca3ed99ef1f25cc 2206 pytest-rerunfailures_9.1.1-1.dsc
 e05c60b9c0053f9ea7865d24a1a287887e43ac71 10340 
pytest-rerunfailures_9.1.1.orig.tar.xz
 4be2f67d0b2ee34416592073a6f54d684b5aecdd 1928 
pytest-rerunfailures_9.1.1-1.debian.tar.xz
Checksums-Sha256:
 dedfba4e97616c6e53ec6777d35b9d8e596326686905d7b07d2e29a13d5c5015 2206 
pytest-rerunfailures_9.1.1-1.dsc
 d7c7c8580d074a6348da9db51c0e321f36bd681e423d1790da941b99eca2cac0 10340 
pytest-rerunfailures_9.1.1.orig.tar.xz
 64b25ac37beeff9e7cd8c2024a0c6c93c587533c4957fa94ca5b093ab60a039e 1928 
pytest-rerunfailures_9.1.1-1.debian.tar.xz
Files:
 b8902c29a94ca1e9018e99474f764662 2206 python optional 
pytest-rerunfailures_9.1.1-1.dsc
 10b21cf7ff0e6ee9535ff78a45e2b816 10340 python optional 
pytest-rerunfailures_9.1.1.orig.tar.xz
 3bc917e242058b3a3ce4b996bc237b7e 1928 python optional 
pytest-rerunfailures_9.1.1-1.debian.tar.xz

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

iQIzBAEBCgAdFiEEYQsotVz8/kXqG1Y7MRa6Xp/6aaMFAl/ymeUACgkQMRa6Xp/6
aaPtig//a5b/yLjag9/sI5p6AGVkgvsUlJopfSCdzBNMzaGS2kgTWXGg3shCawGc
01s+nunAERApqKbQ9y+czM+JeFRHYNepQ5YDdEyzutvYWcKFrDCRsewuQn16M6UP
SMmY9d675rxbDpA1lQsbqohEs+yEsv+UfaI2w89Ai4YvjNVl6xZZo+XXKUGM+pbb
LXOKMkgf5viMvIVnBxc8bOPmmque7J5OvK9HiyJC7UbAj0O0JZcR+2LpXYo2RaGH
xNeAF64uriw3ZL1lF85BIeeEFj7yBCI9qZXcyUUx1MsN0jo5akJ3rly+bfZF/qWe
0xxrhh0nZQTncJNLdMmWvXuV0pSj6kMDYsEBkaTdGqZhZpG+ry0NjcuxhYhOljpU
0uIzqdHBa82w6QWUkTEEAjkGdmRZPqPvGyDbr7+jnu3TVARzOaZnU4rXqjf6G2r1
RjHkrV3SvHGI7tR/aCaIqYDtVu00jgiAfD8xjAfM2EE6YcSIDHlLUQFXBfv6BMGj
I5pkNhVXQvd709E3wQR7nAif/A7SRL+K4PCZRRsSuOys3ZhTghCTH0Lqq/WzoFJ7
4KyjKeJIKHkBauYXQe2srVIUn0kRG+A3K+2FeK8ZYVQOGWYRuLYsEskPBt4vzaxm
HwIrFO0F0bO4eIgmpc5iH+qJQ7WwV3yJjg5DjzhvPJoHkF3/Jhg=
=ZNLq
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to