Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
a35d0e38
Commit
a35d0e38
authored
8 years ago
by
apolcyn
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #9814 from apolcyn/turn_off_ruby_tests
re-enable ruby tests on mac
parents
f2ac4bd4
e0f5688a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/run_tests/run_tests.py
+0
-13
0 additions, 13 deletions
tools/run_tests/run_tests.py
with
0 additions
and
13 deletions
tools/run_tests/run_tests.py
+
0
−
13
View file @
a35d0e38
...
...
@@ -692,18 +692,11 @@ class RubyLanguage(object):
_check_compiler
(
self
.
args
.
compiler
,
[
'
default
'
])
def
test_specs
(
self
):
#TODO(apolcyn) turn mac ruby tests back on once ruby 2.4 issues done
if
platform_string
()
==
'
mac
'
:
print
(
'
skipping ruby test_specs on mac until running on 2.4
'
)
return
[]
return
[
self
.
config
.
job_spec
([
'
tools/run_tests/helper_scripts/run_ruby.sh
'
],
timeout_seconds
=
10
*
60
,
environ
=
_FORCE_ENVIRON_FOR_WRAPPERS
)]
def
pre_build_steps
(
self
):
if
platform_string
()
==
'
mac
'
:
print
(
'
skipping ruby pre_build_steps on mac until running on 2.4
'
)
return
[]
return
[[
'
tools/run_tests/helper_scripts/pre_build_ruby.sh
'
]]
def
make_targets
(
self
):
...
...
@@ -713,15 +706,9 @@ class RubyLanguage(object):
return
[]
def
build_steps
(
self
):
if
platform_string
()
==
'
mac
'
:
print
(
'
skipping ruby build_steps on mac until running on 2.4
'
)
return
[]
return
[[
'
tools/run_tests/helper_scripts/build_ruby.sh
'
]]
def
post_tests_steps
(
self
):
if
platform_string
()
==
'
mac
'
:
print
(
'
skipping ruby post_test_steps on mac until running on 2.4
'
)
return
[]
return
[[
'
tools/run_tests/helper_scripts/post_tests_ruby.sh
'
]]
def
makefile_name
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment