-
Notifications
You must be signed in to change notification settings - Fork 78
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
[Molecule v25.1.0] Replace util.run_command with app.run_command #294
[Molecule v25.1.0] Replace util.run_command with app.run_command #294
Conversation
git clean -xdf tar zcvf ../python-molecule-plugins_23.6.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-molecule-plugins.spec ../python-molecule-plugins_23.6.0-1.spec cp ../python*-molecule-plugins*23.6.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-community-molecule-plugins-23.6.0 rm -rf ../python*-molecule-plugins*23.6.0*.* See ansible-community#155 See ansible-community#237 See ansible-community#294 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
637f56e
to
31e3440
Compare
git clean -xdf tar zcvf ../python-molecule-plugins_23.6.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-molecule-plugins.spec ../python-molecule-plugins_23.6.0-1.spec cp ../python*-molecule-plugins*23.6.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-community-molecule-plugins-23.6.0 rm -rf ../python*-molecule-plugins*23.6.0*.* See ansible-community#155 See ansible-community#237 See ansible-community#294 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
96c1cf8
to
1f72244
Compare
…n_command() From ansible/molecule#4359 `util.run_command()` should now replaced with `get_app(Path()).run_command()`. Fixes ansible/molecule#4372 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
0a91829
to
0487341
Compare
git clean -xdf tar zcvf ../python-molecule-plugins_23.6.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-molecule-plugins.spec ../python-molecule-plugins_23.6.0-1.spec cp ../python*-molecule-plugins*23.6.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-community-molecule-plugins-23.6.0 rm -rf ../python*-molecule-plugins*23.6.0*.* See ansible-community#155 See ansible-community#237 See ansible-community#294 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
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.
The test suite seems fine on my test sandbox (my test setup is allowing to run vagrant tests too) and the github one is fine too. Thanks.
I would have preferred to not require latest molecule version as it's quite new but we've already did that in the past and 6.0.0 is old. So, I guess it's fine too
@apatard - Will there be a new release soon? |
I'm not sure I'll manage to do it today. Given how important this fix is, I'll try to make a release tomorrow. |
git clean -xdf tar zcvf ../python-molecule-plugins_23.6.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-molecule-plugins.spec ../python-molecule-plugins_23.6.0-1.spec cp ../python*-molecule-plugins*23.6.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/ansible-community-molecule-plugins-23.6.0 rm -rf ../python*-molecule-plugins*23.6.0*.* See ansible-community#155 See ansible-community#237 See ansible-community#294 Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
When ansible-community#294, I didn't notice that the python version was not inside quotes, leading to python version being parsed as 3.1 and not 3.10. Breaking the release workflow. Add missing quotes. Signed-off-by: Arnaud Patard <arnaud.patard@collabora.com>
Update: |
When #294, I didn't notice that the python version was not inside quotes, leading to python version being parsed as 3.1 and not 3.10. Breaking the release workflow. Add missing quotes. Signed-off-by: Arnaud Patard <arnaud.patard@collabora.com>
From ansible/molecule#4359
util.run_command
should now replaced withapp.run_command
.Fixes ansible/molecule#4372