Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 3a13588

Browse files
Spacehunterzclaude
andcommitted
fix: Remove integration-tests job from security workflow
The tests/integration/ directory was empty after removing dev auth tests. Removed the job and its references in needs/summary sections. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 05240b3 commit 3a13588

1 file changed

Lines changed: 2 additions & 46 deletions

File tree

.github/workflows/security-tests.yml

Lines changed: 2 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -47,49 +47,6 @@ jobs:
4747
flags: unit-tests,security
4848
name: security-unit-tests
4949

50-
integration-tests:
51-
name: Integration Tests (Security)
52-
runs-on: ubuntu-latest
53-
timeout-minutes: 15
54-
55-
services:
56-
redis:
57-
image: redis:7-alpine
58-
ports:
59-
- 6379:6379
60-
options: >-
61-
--health-cmd "redis-cli ping"
62-
--health-interval 10s
63-
--health-timeout 5s
64-
--health-retries 5
65-
66-
steps:
67-
- name: Checkout code
68-
uses: actions/checkout@v4
69-
70-
- name: Set up Python
71-
uses: actions/setup-python@v5
72-
with:
73-
python-version: '3.11'
74-
cache: 'pip'
75-
76-
- name: Install dependencies
77-
working-directory: apps/dashboard/backend
78-
run: |
79-
pip install -r requirements.txt
80-
pip install pytest pytest-asyncio pytest-timeout
81-
82-
- name: Run integration tests
83-
working-directory: apps/dashboard/backend
84-
run: |
85-
pytest tests/integration/ -v --tb=short
86-
env:
87-
SESSION_ENCRYPTION_KEY: ${{ secrets.TEST_SESSION_ENCRYPTION_KEY || 'QgL6WE5rriiPpNBid3KZS8XXxMViqgoop57l30nF7n0=' }}
88-
DEV_ACCESS_TOKEN: ${{ secrets.TEST_DEV_ACCESS_TOKEN || 'test-dev-token-for-ci' }}
89-
SESSION_DOMAIN: ""
90-
REDIS_HOST: localhost
91-
REDIS_PORT: 6379
92-
9350
security-tests:
9451
name: Security Attack Tests
9552
runs-on: ubuntu-latest
@@ -123,7 +80,7 @@ jobs:
12380
coverage-check:
12481
name: Coverage Validation
12582
runs-on: ubuntu-latest
126-
needs: [unit-tests, integration-tests, security-tests]
83+
needs: [unit-tests, security-tests]
12784
timeout-minutes: 10
12885

12986
steps:
@@ -222,7 +179,7 @@ jobs:
222179
test-summary:
223180
name: Test Summary
224181
runs-on: ubuntu-latest
225-
needs: [unit-tests, integration-tests, security-tests, sast-scan]
182+
needs: [unit-tests, security-tests, sast-scan]
226183
if: always()
227184

228185
steps:
@@ -231,6 +188,5 @@ jobs:
231188
echo "# Security Test Results" >> $GITHUB_STEP_SUMMARY
232189
echo "" >> $GITHUB_STEP_SUMMARY
233190
echo "✅ Unit Tests: ${{ needs.unit-tests.result }}" >> $GITHUB_STEP_SUMMARY
234-
echo "✅ Integration Tests: ${{ needs.integration-tests.result }}" >> $GITHUB_STEP_SUMMARY
235191
echo "✅ Security Tests: ${{ needs.security-tests.result }}" >> $GITHUB_STEP_SUMMARY
236192
echo "✅ SAST Scan: ${{ needs.sast-scan.result }}" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)