-
Notifications
You must be signed in to change notification settings - Fork 153
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 boolean values in docs #400
Fix boolean values in docs #400
Conversation
Build failed. ❌ ansible-changelog-fragment FAILURE in 15s |
Thanks @vladislav-sharapov for taking on this and changing the booleans for this collection. I don't unfortunately know what's causing the CI failures but hoping someone else can pipe in on this to help out. |
The sanity failures show these messages:
These don't look like they are based on this PR; the history looks like the last commit also may have failed, I would ignore these for now until the project maintainers can comment. The other failure is because this PR is missing a changelog fragment. |
These sanity errors remind me of ansible-collections/news-for-maintainers#25 :) |
#403 should fix the sanity tests. |
Build succeeded. ✔️ ansible-changelog-fragment SUCCESS in 16s |
recheck |
Build succeeded. ✔️ ansible-changelog-fragment SUCCESS in 18s |
I suppose build has failed because of this issue uqfoundation/dill#514. I see |
@vladislav-sharapov Hi, I think there are two issues [a] and [b].
We are checking [b] and will get back to you when we have resolved this issue. |
The dill version has long been fixed in ansible-core devel. It's just that the milestone branch is way behind both devel and stable-2.14... (its state is three weeks before 2.14.0 has been released; according to https://github.com/ansible/ansible/blob/devel/docs/docsite/rst/roadmap/ROADMAP_2_15.rst#development-phase it will be updated in four days.) |
The milestone branch has been bumped, so that should pass now. |
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.
LTGM
Build succeeded (gate pipeline). ✔️ ansible-changelog-fragment SUCCESS in 17s |
SUMMARY
Fixes #397
ISSUE TYPE
COMPONENT NAME
Docs of several modules
ADDITIONAL INFORMATION
Notes about testing. I'm not sure how to test collections properly. I have ran
ansible-test sanity --python 3.10
andansible-test units --python 3.10
in venv withansible-core 2.14
(with 0 return code in both cases). To run units test successfully I had to installpytest-forked
pip package in addition to this onepytest-xdist
from test-requirements.txt.Note about issue #397. I haven't changed
yes
here because in this case it is value from/etc/vfstab
. Also I've changedyes
for parametersmasquerade
andicmp_block_inversion
because they both are converted to bool byboolean
function and will be changed to boolean in a future release (1, 2), forrequired
too.