Skip to content

Commit

Permalink
Merge pull request #34 from jsmolar/envoy_doc_string
Browse files Browse the repository at this point in the history
Update Envoy fixture doc string
  • Loading branch information
pehala authored Aug 3, 2022
2 parents 105a150 + 0b21150 commit 440a97a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def label(blame):

@pytest.fixture(scope="session")
def backend(request, openshift, blame, label):
"""Httpbin backend"""
"""Deploys Httpbin backend"""
httpbin = Httpbin(openshift, blame("httpbin"), label)
request.addfinalizer(httpbin.delete)
httpbin.commit()
Expand All @@ -104,7 +104,7 @@ def backend(request, openshift, blame, label):

@pytest.fixture(scope="module")
def envoy(request, authorino, openshift, blame, backend, label):
"""Envoy"""
"""Deploys Envoy that wire up the Backend behind the reverse-proxy and Authorino instance"""
envoy = Envoy(openshift, authorino, blame("envoy"), label, backend.url)
request.addfinalizer(envoy.delete)
envoy.commit()
Expand Down

0 comments on commit 440a97a

Please sign in to comment.