Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/scenario-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ jobs:
docker build -t acapy-test -f docker/Dockerfile.run .
cd scenarios
poetry install --no-root
poetry run pytest -s -m examples
poetry run pytest -m examples
2 changes: 1 addition & 1 deletion scenarios/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def compose(self, *command: str) -> int:

def cleanup(self):
"""Runs docker compose down -v for cleanup."""
self.compose("logs")
exit_status = self.compose("down", "-v")
if exit_status != 0:
raise ExampleFailedException(
Expand All @@ -56,6 +55,7 @@ def handle_run(self, *command: str):
try:
exit_status = self.compose(*command)
if exit_status != 0:
self.compose("logs")
raise ExampleFailedException(
f"Command failed with exit status: {exit_status}",
exit_status=exit_status,
Expand Down
Loading