Accepting request 1229829 from systemsmanagement:ansible

OBS-URL: https://build.opensuse.org/request/show/1229829
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ansible-runner?expand=0&rev=14
This commit is contained in:
Ana Guerrero 2024-12-10 22:49:43 +00:00 committed by Git OBS Bridge
commit 352928d6a4
2 changed files with 15 additions and 8 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Dec 10 14:15:28 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
- ignore another test that fails now (possibly with
ansible-core-2.18)
-------------------------------------------------------------------
Wed Oct 16 11:19:09 UTC 2024 - Johannes Kastl <opensuse_buildservice@ojkastl.de>

View File

@ -91,15 +91,16 @@ sed -i -e '/cov/d' -e '/color/d' pytest.ini
# Ignored tests, upstream bug report:
# https://github.com/ansible/ansible-runner/issues/1237
#
IGNORED_TESTS='test_callback_plugin_task_args_leak[playbook0] or '
IGNORED_TESTS+='test_resolved_actions[playbook0] or '
IGNORED_TESTS+='test_playbook_on_stats_summary_fields or '
IGNORED_TESTS+='test_multiline_blank_write[pexpect] or '
IGNORED_TESTS='test_callback_plugin_task_args_leak[playbook0]'
IGNORED_TESTS+=' or test_resolved_actions[playbook0]'
IGNORED_TESTS+=' or test_playbook_on_stats_summary_fields'
IGNORED_TESTS+=' or test_multiline_blank_write[pexpect]'
# flaky tests
IGNORED_TESTS+='test_run_command_long_running or '
IGNORED_TESTS+='test_run_command_long_running_children or '
IGNORED_TESTS+='test_password_prompt or '
IGNORED_TESTS+='test_get_role_list'
IGNORED_TESTS+=' or test_run_command_long_running'
IGNORED_TESTS+=' or test_run_command_long_running_children'
IGNORED_TESTS+=' or test_password_prompt'
IGNORED_TESTS+=' or test_get_role_list'
IGNORED_TESTS+=' or test_module_level_no_log[playbook0]'
export PATH=%{buildroot}%{_bindir}:$PATH
%pytest -n auto -k "not ($IGNORED_TESTS)"