Skip to content

Commit 4edd935

Browse files
committed
.
1 parent da653c9 commit 4edd935

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ jobs:
7272
- name: Pull executor Docker image
7373
run: docker pull onyxdotapp/python-executor-sci:latest
7474

75+
- name: Test Docker image can run
76+
run: |
77+
echo "Testing if the Docker image can start and sleep..."
78+
docker run --rm -d --name test-container onyxdotapp/python-executor-sci:latest sleep 30
79+
sleep 2
80+
docker ps -a | grep test-container || echo "Container not found!"
81+
docker logs test-container || echo "No logs"
82+
docker stop test-container || true
83+
7584
- name: Run integration tests
7685
run: uv run pytest tests/integration_tests -v --tb=short -x
7786

0 commit comments

Comments
 (0)