Skip to content

Commit 1c97cde

Browse files
committed
Clone helm charts repo before testing. Otherwise we do not
have sources Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 0a5ad67 commit 1c97cde

3 files changed

+8
-4
lines changed

test/test_helm_rails_ex_application.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_curl_connection(self):
5353
assert self.hc_api.helm_installation()
5454
self.hc_api.package_name = "redhat-ruby-rails-application"
5555
assert self.hc_api.helm_package()
56-
pod_name = f"rails_{VERSION.replace(".", "")}"
56+
pod_name = f"rails-{VERSION.replace(".", "")}"
5757
assert self.hc_api.helm_installation(
5858
values={
5959
"ruby_version": f"{VERSION}{TAG}",
@@ -78,7 +78,7 @@ def test_by_helm_test(self):
7878
assert self.hc_api.helm_installation()
7979
self.hc_api.package_name = "redhat-ruby-rails-application"
8080
assert self.hc_api.helm_package()
81-
pod_name = f"rails_{VERSION.replace(".", "")}"
81+
pod_name = f"rails-{VERSION.replace(".", "")}"
8282
assert self.hc_api.helm_installation(
8383
values={
8484
"ruby_version": f"{VERSION}{TAG}",

test/test_helm_ruby_ex_application.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_curl_connection(self):
5353
assert self.hc_api.helm_installation()
5454
self.hc_api.package_name = "redhat-ruby-rails-application"
5555
assert self.hc_api.helm_package()
56-
pod_name = f"rails_{VERSION.replace(".", "")}"
56+
pod_name = f"rails-{VERSION.replace(".", "")}"
5757
assert self.hc_api.helm_installation(
5858
values={
5959
"ruby_version": f"{VERSION}{TAG}",
@@ -78,7 +78,7 @@ def test_by_helm_test(self):
7878
assert self.hc_api.helm_installation()
7979
self.hc_api.package_name = "redhat-ruby-rails-application"
8080
assert self.hc_api.helm_package()
81-
pod_name = f"rails_{VERSION.replace(".", "")}"
81+
pod_name = f"rails-{VERSION.replace(".", "")}"
8282
assert self.hc_api.helm_installation(
8383
values={
8484
"ruby_version": f"{VERSION}{TAG}",

test/test_helm_ruby_imagestreams.py

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
@pytest.fixture(scope="module")
2525
def helm_api(request):
2626
helm_api = HelmChartsAPI(path=test_dir / "../charts/redhat", package_name="redhat-ruby-imagestreams", tarball_dir=test_dir)
27+
helm_api.clone_helm_chart_repo(
28+
repo_url="https://github.com/sclorg/helm-charts", repo_name="helm-charts",
29+
subdir="charts/redhat"
30+
)
2731
# app_name = os.path.basename(request.param)
2832
yield helm_api
2933
pass

0 commit comments

Comments
 (0)