Skip to content

Commit

Permalink
remove pytest-kind from upload file test
Browse files Browse the repository at this point in the history
  • Loading branch information
arikalon1 committed Oct 25, 2021
1 parent afde1b1 commit 3f2e96e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_k8s_utils.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import kubernetes
import logging
from kubernetes import config
from pytest_kind import KindCluster
# from pytest_kind import KindCluster
from tests.utils.kubernetes_utils import create_sleeping_deployment
from robusta.api import *
from tests.utils.robusta_utils import RobustaController


def test_upload(kind_cluster: KindCluster):
config.load_kube_config(str(kind_cluster.kubeconfig_path))
def test_upload(robusta: RobustaController):
# config.load_kube_config(str(kind_cluster.kubeconfig_path))
sleepypod = create_sleeping_deployment()
time.sleep(60)
pod = RobustaPod.find_pod(sleepypod.metadata.name, "default")
Expand Down

0 comments on commit 3f2e96e

Please sign in to comment.