Skip to content

Commit

Permalink
Disable helm tests for go < 1.23
Browse files Browse the repository at this point in the history
helm main branch is now helm 4 which dropped support for go older than
1.23
  • Loading branch information
dirkmueller committed Jan 8, 2025
1 parent 81f2c3f commit b5a7c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_go.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ 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")
if "go1.21" in go_version or "go1.22" in go_version:
pytest.skip("Helm requires Go >= 1.23")

auto_container_per_test.connection.check_output(
container_git_clone.test_command
Expand Down

0 comments on commit b5a7c6d

Please sign in to comment.