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

[ruby] testing: Add ruby 3.0/3.1/3.2 unit tests #31991

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
format
  • Loading branch information
apolcyn committed Jan 3, 2023
commit 05e32224f1df0bca655f00cdf11311d171282015
3 changes: 2 additions & 1 deletion tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,8 @@ class RubyLanguage(object):
def configure(self, config, args):
self.config = config
self.args = args
_check_compiler(self.args.compiler, ['default', 'ruby2.7', 'ruby3.0', 'ruby3.1', 'ruby3.2'])
_check_compiler(self.args.compiler,
['default', 'ruby2.7', 'ruby3.0', 'ruby3.1', 'ruby3.2'])

def test_specs(self):
tests = [
Expand Down