-
Notifications
You must be signed in to change notification settings - Fork 76
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
Vagrant: Reducing whitespace in Vagrantfile #277
Open
dinadins
wants to merge
2
commits into
ansible-community:main
Choose a base branch
from
dinadins:bug-276
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Label error. Requires exactly 1 of: bug, enhancement, major, minor, patch, skip-changelog. Found: |
for more information, see https://pre-commit.ci
pytest tests are not run for Vagrant in CICD, here's my results (Ubuntu 22.04):
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The current implementation in
src/molecule_plugins/vagrant/modules/vagrant.py
generates a Vagrantfile with excessive white space (a total of 42 empty lines with themolecule.yml
sample indriver.py
), and some indentation issues for theoverwrite
entries, making troubleshooting less pleasant. The proposed changes greatly reduce blank lines and keep the Vagrantfile in a more easily readable form.I have first attempted to clear white space by
{%-
/-%}
, however this proved challenging with indentation and other desired whitespace (separating blocks of code in the Vagrantfile). Eventually I went with addingtrim_blocks=True, lstrip_blocks=True
to thejinja2.Environment
invocation and reworking the template. I have tried various forms of input inmolecule.yml
and get consistent spacing in Vagrantfile (see some examples below).All Vagrant related tests pass (
box_url
modified as per #274 / #275) and I have verified every Vagrantfile produced by the tests has no spurious empty lines or uneven indentation.Examples:
The example from #276:
molecule.yml:
Vagrantfile:
A very basic config:
molecule.yml:
Vagrantfile:
molecule.yml:
Vagrantfile:
libvirt:
molecule.yml:
Vagrantfile: