We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da653c9 commit 4edd935Copy full SHA for 4edd935
1 file changed
.github/workflows/ci.yml
@@ -72,6 +72,15 @@ jobs:
72
- name: Pull executor Docker image
73
run: docker pull onyxdotapp/python-executor-sci:latest
74
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
+
84
- name: Run integration tests
85
run: uv run pytest tests/integration_tests -v --tb=short -x
86
0 commit comments