Taragolis opened a new pull request, #28606:
URL: https://github.com/apache/airflow/pull/28606
After #28562 PR Tests steps failed with error
```console
__________ ERROR at setup of TestSSHHook.test_exec_ssh_client_command
__________
self = <flaky.flaky_pytest_plugin.FlakyPlugin object at 0x7fac59336b90>
item = <Function test_exec_ssh_client_command>
def pytest_runtest_setup(self, item):
"""
Pytest hook to modify the test before it's run.
:param item:
The test item.
"""
if not self._has_flaky_attributes(item):
if hasattr(item, 'iter_markers'):
for marker in item.iter_markers(name='flaky'):
> self._make_test_flaky(item, *marker.args,
**marker.kwargs)
E TypeError: _make_test_flaky() got an unexpected keyword
argument 'reruns'
/usr/local/lib/python3.7/site-packages/flaky/flaky_pytest_plugin.py:244:
TypeError
```
Seems like somewhere `flaky` still persist (docker cache?) but not affects
main. This PR disable this plugin in `pytest` config which also useful if this
plugin will distributed as some package dependency.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]