-
Notifications
You must be signed in to change notification settings - Fork 483
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
podman-compose down removes networks #1062
Conversation
ad6251c
to
a6c7b95
Compare
@@ -187,3 +187,33 @@ def test_down_with_orphans(self): | |||
], | |||
1, | |||
) | |||
|
|||
def test_down_with_network(self): | |||
up_cmd = [ |
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.
Could you put the commands to inside relevant run_subprocess_assert_returncode
?
I do understand you copied the style from the tests, we will fix this inconsistency eventually.
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.
Looks great, thanks for working on this.
I just had single stylistic comment.
6d07f79
to
27dc6fe
Compare
Fixes containers#490 Signed-off-by: Timon de Groot <[email protected]>
27dc6fe
to
db0aad9
Compare
@p12tic thanks for your review! I changed the test to reflect the new style. |
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.
Looks great, thanks!
Fixes #490