Skip to content

Commit

Permalink
chore: updates poetry lock and fixes formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Oct 20, 2023
1 parent 3f45c11 commit b2e48bf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 84 deletions.
83 changes: 1 addition & 82 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions tests/e2e/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,17 @@ def podman_setup() -> YieldFixture[int]:
)

# Create a pod
response = subprocess.run(["podman", "play", "kube", f"{e2e_context}/play-kube.yml"], check=True)
response = subprocess.run(
["podman", "play", "kube", f"{e2e_context}/play-kube.yml"], check=True
)
yield response.returncode

# Clean up the container image, pod and mock server
try:
subprocess.run(["podman", "play", "kube", "--down", f"{e2e_context}/play-kube.yml"], check=True)
subprocess.run(
["podman", "play", "kube", "--down", f"{e2e_context}/play-kube.yml"],
check=True,
)
subprocess.run(["podman", "rmi", image_name], check=True)
subprocess.run(["podman", "rmi", mock_server_image_name], check=True)
except subprocess.CalledProcessError as e:
Expand Down

0 comments on commit b2e48bf

Please sign in to comment.