From f507264575b6dda72e3237a2b39de9c6444e52d3 Mon Sep 17 00:00:00 2001 From: Jaiveer Katariya Date: Thu, 8 Dec 2022 12:40:26 -0500 Subject: [PATCH] cleanup --- .github/workflows/run-integration-tests-basic.yml | 1 - test/integration/k8s-deploy-test.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/run-integration-tests-basic.yml b/.github/workflows/run-integration-tests-basic.yml index f47e54ad..6dbe7305 100644 --- a/.github/workflows/run-integration-tests-basic.yml +++ b/.github/workflows/run-integration-tests-basic.yml @@ -70,4 +70,3 @@ jobs: run: | python test/integration/k8s-deploy-test.py namespace=${{ env.NAMESPACE }} kind=Deployment name=nginx-deployment containerName=nginx:1.14.2 labels=app:nginx,workflow:actions.github.com-k8s-deploy,workflowFriendlyName:Minikube_Integration_Tests_-_basic selectorLabels=app:nginx python test/integration/k8s-deploy-test.py namespace=${{ env.NAMESPACE }} kind=Service name=nginx-service labels=workflow:actions.github.com-k8s-deploy,workflowFriendlyName:Minikube_Integration_Tests_-_basic selectorLabels=app:nginx - python test/integration/k8s-deploy-test.py namespace=${{ env.NAMESPACE }} kind=Service name=nginx-service labels=workflow:actions.github.com-k8s-deploy,workflowFriendlyName:Minikube_Integration_Tests_-_basic selectorLabels=app:nginx diff --git a/test/integration/k8s-deploy-test.py b/test/integration/k8s-deploy-test.py index 912d4f4a..7b80babb 100644 --- a/test/integration/k8s-deploy-test.py +++ b/test/integration/k8s-deploy-test.py @@ -241,8 +241,6 @@ def main(): RESULT, msg = verifyIngress(k8_object, parsedArgs) if kind == "TrafficSplit": RESULT, msg = verifyTSObject(k8_object, parsedArgs) - if kind == "Pod": - RESULT, msg = verifyPod(k8_object, parsedArgs) if not RESULT: sys.exit(f"{kind} {name} failed check: {msg}")