Skip to content

Commit 819376d

Browse files
committed
get rig of api test for now
Signed-off-by: JaredforReal <[email protected]>
1 parent 023f009 commit 819376d

File tree

3 files changed

+6
-393
lines changed

3 files changed

+6
-393
lines changed

.github/workflows/k8s-api-functionality-test.yml

Lines changed: 0 additions & 331 deletions
This file was deleted.

.github/workflows/k8s-integration-test.yml

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656
kustomize_version: v5.7.1
5757

5858
# Step 3: Run comprehensive API functionality tests
59-
test-api-functionality:
60-
uses: ./.github/workflows/k8s-api-functionality-test.yml
61-
needs: kind-integration-test
62-
with:
63-
kind_version: v0.20.0
64-
kustomize_version: v5.7.1
59+
# test-api-functionality:
60+
# uses: ./.github/workflows/k8s-api-functionality-test.yml
61+
# needs: kind-integration-test
62+
# with:
63+
# kind_version: v0.20.0
64+
# kustomize_version: v5.7.1
6565

6666
# Step 4: Test with custom configurations
6767
test-with-custom-config:
@@ -85,7 +85,6 @@ jobs:
8585
[
8686
validate-manifests,
8787
kind-integration-test,
88-
test-api-functionality,
8988
test-with-custom-config,
9089
security-scan,
9190
]
@@ -97,7 +96,6 @@ jobs:
9796
echo "=== Kubernetes Integration Test Summary ==="
9897
echo "Manifest Validation: ${{ needs.validate-manifests.result }}"
9998
echo "kind Integration Test: ${{ needs.kind-integration-test.result }}"
100-
echo "API Functionality Test: ${{ needs.test-api-functionality.result }}"
10199
echo "Custom Config Test: ${{ needs.test-with-custom-config.result }}"
102100
echo "Security Scan: ${{ needs.security-scan.result }}"
103101
@@ -111,10 +109,6 @@ jobs:
111109
echo "❌ kind integration test failed"
112110
FAILURES=$((FAILURES + 1))
113111
fi
114-
if [[ "${{ needs.test-api-functionality.result }}" == "failure" ]]; then
115-
echo "❌ API functionality test failed"
116-
FAILURES=$((FAILURES + 1))
117-
fi
118112
if [[ "${{ needs.test-with-custom-config.result }}" == "failure" ]]; then
119113
echo "❌ Custom config test failed"
120114
FAILURES=$((FAILURES + 1))
@@ -128,7 +122,6 @@ jobs:
128122
echo "=== Test Coverage ==="
129123
echo "✅ Core deployment validation"
130124
echo "✅ Service connectivity testing"
131-
echo "✅ API functionality testing (14 comprehensive tests)"
132125
echo "✅ Configuration validation"
133126
echo "✅ Security scanning"
134127
echo "✅ Error handling and edge cases"

0 commit comments

Comments
 (0)