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

chore: Remove ruby2.7 support #6674

Merged
merged 4 commits into from
Feb 9, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove ruby2.7 build cmd integ tests
  • Loading branch information
hnnasit committed Feb 8, 2024
commit e0552d265034abc25d51f30f4e2255a405f1a0eb
4 changes: 2 additions & 2 deletions tests/integration/buildcmd/test_build_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,12 +819,12 @@ def test_building_ruby_in_process(self, runtime):
class TestBuildCommand_RubyFunctions_With_Architecture(BuildIntegRubyBase):
template = "template_with_architecture.yaml"

@parameterized.expand([("Ruby"), ("ruby3.2", "Ruby32")])
@parameterized.expand([("ruby3.2", "Ruby32")])
@skipIf(SKIP_DOCKER_TESTS or SKIP_DOCKER_BUILD, SKIP_DOCKER_MESSAGE)
def test_building_ruby_in_container_with_specified_architecture(self, runtime, codeuri):
self._test_with_default_gemfile(runtime, "use_container", codeuri, self.test_data_path, "x86_64")

@parameterized.expand([("Ruby"), ("ruby3.2", "Ruby32")])
@parameterized.expand([("ruby3.2", "Ruby32")])
def test_building_ruby_in_process_with_specified_architecture(self, runtime, codeuri):
self._test_with_default_gemfile(runtime, False, codeuri, self.test_data_path, "x86_64")

Expand Down
Loading