Something changes with libtorrent 2.0.7 with how it handles error state
with missing pieces on disk.
This will require further investigation but will mark the tests as xfail
for now.
The Console UI tests started stalling after the realese of pytest 7.4.3
which was a result of the reversing the mro order of fixtures on
classes, to give base classes priority.
The change resulted in `base_fixture` being sorted before `client` and
`daemon` fixtures and the tests stalled, likely due to the use of yield
in base_fixture.
# pytest 7.4.2
[Mark(name='usefixtures', args=('client', 'daemon'), kwargs={})],
[Mark(name='usefixtures', args=('base_fixture',), kwargs={})],
# pytest 7.4.3
[Mark(name='usefixtures', args=('base_fixture',), kwargs={})],
[Mark(name='usefixtures', args=('client', 'daemon'), kwargs={})],
The fix is to move base_fixture along with the other fixtures and place it
last.
Refs: https://github.com/pytest-dev/pytest/pull/11545
Tests were stalling in deluge_ui_entry with pytest 7.4.3 likely due to
changes in the way it handles stderr but it is not clean the extact
issue.
For now we will pin the pytest version and look to fix the issue later.
Reference: https://docs.pytest.org/en/stable/changelog.html#pytest-7-4-3-2023-10-24