Skip to content

Commit f6a9597

Browse files
committed
.
1 parent 2cdf6cb commit f6a9597

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
docker stop test-container || true
8383
8484
- name: Run integration tests
85-
run: uv run pytest tests/integration_tests -v --tb=short -x
85+
run: uv run pytest tests/integration_tests -v --tb=short -x -s
8686

8787
- name: Show Docker container logs on failure
8888
if: failure()

code-interpreter/tests/integration_tests/test_data_stack.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@ def test_numpy_pandas_matplotlib_stack() -> None:
5050

5151
assert response.status_code == 200
5252
payload = response.json()
53-
assert payload["stderr"] == ""
54-
assert payload["exit_code"] == 0
53+
print(f"DEBUG: Full payload: {payload}")
54+
assert payload["stderr"] == "", f"stderr was: {payload['stderr']}"
55+
assert payload["exit_code"] == 0, (
56+
f"exit_code was: {payload['exit_code']}, timed_out: {payload.get('timed_out')}"
57+
)
5558
assert payload["timed_out"] is False
5659

5760
stdout = payload["stdout"].strip()

0 commit comments

Comments
 (0)