Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update helm version to the latest release to test new golang-openssl #717

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions tests/test_go.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_build_kured(auto_container_per_test, container_git_clone):
[
GitRepositoryBuild(
repository_url="https://github.com/helm/helm.git",
repository_tag="v3.15.1",
repository_tag="v3.16.4",
build_command="env GOMAXPROCS=2 make build test-unit",
).to_pytest_param(),
],
Expand All @@ -80,10 +80,6 @@ def test_build_helm(auto_container_per_test, container_git_clone):

"""

go_version = auto_container_per_test.connection.check_output("go version")
if "go1.20" in go_version or "go1.21" in go_version:
pytest.skip("Helm requires Go >= 1.22")

auto_container_per_test.connection.check_output(
container_git_clone.test_command
)
Expand Down
Loading