-
Notifications
You must be signed in to change notification settings - Fork 365
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Ansible version comparison in tests #837
Conversation
Can you remove the unused import of |
Done in the previous commit. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Backport to release_2.0: 💚 backport PR created✅ Backport PR branch: Backported as #841 🤖 @patchback |
Fix Ansible version comparison in tests Current Ansible version string comparison for the test_display_callback.py::test_callback_plugin_records_notify_events test is incorrect as 2.5 does not compare as less than 2.11, etc., so the test is being skipped. Reviewed-by: Sam Doran <sdoran@redhat.com> Reviewed-by: None <None> (cherry picked from commit dc5e91f)
…dc5e91f4655d61bdecb437067b408c88bc69841b/pr-837 [PR #837/dc5e91f4 backport][release_2.0] Fix Ansible version comparison in tests This is a backport of PR #837 as merged into devel (dc5e91f). Current Ansible version string comparison for the test_display_callback.py::test_callback_plugin_records_notify_events test is incorrect as 2.5 does not compare as less than 2.11, etc., so the test is being skipped. Reviewed-by: Sam Doran <sdoran@redhat.com> Reviewed-by: None <None>
Current Ansible version string comparison for the
test_display_callback.py::test_callback_plugin_records_notify_events
test is incorrect as2.5
does not compare as less than2.11
, etc., so the test is being skipped.