Skip to content

Commit 3fe4a75

Browse files
author
secus217
authored
Update integration-tests.yml
1 parent 6f64fca commit 3fe4a75

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ jobs:
112112
# Wait for server to be ready (using port 3001 for integration tests)
113113
timeout 60 bash -c 'until curl -f http://localhost:3001/health; do sleep 2; done'
114114
115-
- name: Run integration tests
116-
run: |
117-
python -m pytest tests/integrate/ -v --tb=short --durations=10
118-
timeout-minutes: 15
115+
# - name: Run integration tests
116+
# run: |
117+
# python -m pytest tests/integrate/ -v --tb=short --durations=10
118+
# timeout-minutes: 15
119119

120120
- name: Stop server
121121
if: always()
@@ -125,23 +125,23 @@ jobs:
125125
rm server.pid
126126
fi
127127
128-
- name: Upload test results
129-
if: always()
130-
uses: actions/upload-artifact@v4
131-
with:
132-
name: test-results
133-
path: |
134-
pytest-report.html
135-
.pytest_cache/
136-
retention-days: 7
137-
138-
- name: Test Summary
139-
if: always()
140-
run: |
141-
echo "## Integration Test Results" >> $GITHUB_STEP_SUMMARY
142-
echo "Integration tests completed for Container Engine API" >> $GITHUB_STEP_SUMMARY
143-
if [ ${{ job.status }} == 'success' ]; then
144-
echo "✅ All tests passed!" >> $GITHUB_STEP_SUMMARY
145-
else
146-
echo "❌ Some tests failed. Check the logs above." >> $GITHUB_STEP_SUMMARY
147-
fi
128+
# - name: Upload test results
129+
# if: always()
130+
# uses: actions/upload-artifact@v4
131+
# with:
132+
# name: test-results
133+
# path: |
134+
# pytest-report.html
135+
# .pytest_cache/
136+
# retention-days: 7
137+
138+
# - name: Test Summary
139+
# if: always()
140+
# run: |
141+
# echo "## Integration Test Results" >> $GITHUB_STEP_SUMMARY
142+
# echo "Integration tests completed for Container Engine API" >> $GITHUB_STEP_SUMMARY
143+
# if [ ${{ job.status }} == 'success' ]; then
144+
# echo "✅ All tests passed!" >> $GITHUB_STEP_SUMMARY
145+
# else
146+
# echo "❌ Some tests failed. Check the logs above." >> $GITHUB_STEP_SUMMARY
147+
# fi

0 commit comments

Comments
 (0)