Skip to content

Commit

Permalink
Merge pull request #69 from astronomer/pgvishnuram/update_pykind
Browse files Browse the repository at this point in the history
update requirements and pymodules
  • Loading branch information
pgvishnuram committed Aug 12, 2022
2 parents 372dfe6 + e866f13 commit 9771533
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
6 changes: 3 additions & 3 deletions tests/functionaltests/requirement.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest
#pytest_kind==21.1.3
git+ssh://git@github.com/aantn/pytest-kind.git
pytest==7.1.2
pytest-kind==22.8.0
pykube==0.15.0
pykube-ng==22.7.0
11 changes: 3 additions & 8 deletions tests/functionaltests/test_certgenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,13 @@

KUBE_VERSION = os.getenv("KUBE_VERSION", "1.23.4")
IMAGE = f"kindest/node:v{KUBE_VERSION}"
KIND_VERSION = "v0.12.0"
KUBECTL_VERSION = "v1.23.4"
KIND_VERSION = os.getenv("KIND_VERSION", "v0.14.0")
KUBECTL_VERSION = os.getenv("KUBECTL_VERSION", "v1.23.4")


@fixture(scope="session")
def kind_cluster():
cluster = KindCluster(
name="certgenerator",
image=IMAGE,
kind_version=KIND_VERSION,
kubectl_version=KUBECTL_VERSION,
)
cluster = KindCluster(name="certgenerator", image=IMAGE)
cluster.create()

yield cluster
Expand Down

0 comments on commit 9771533

Please sign in to comment.