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
c96b9eb7
Commit
c96b9eb7
authored
9 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
correct behavior for travis flag
parent
c95eead4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/run_tests/run_tests.py
+8
-7
8 additions, 7 deletions
tools/run_tests/run_tests.py
with
8 additions
and
7 deletions
tools/run_tests/run_tests.py
+
8
−
7
View file @
c96b9eb7
...
@@ -462,13 +462,14 @@ argp.add_argument('-x', '--xml_report', default=None, type=str,
...
@@ -462,13 +462,14 @@ argp.add_argument('-x', '--xml_report', default=None, type=str,
help
=
'
Generates a JUnit-compatible XML report
'
)
help
=
'
Generates a JUnit-compatible XML report
'
)
args
=
argp
.
parse_args
()
args
=
argp
.
parse_args
()
if
args
.
use_docker
and
not
args
.
travis
:
if
args
.
use_docker
:
print
'
Seen --use_docker flag, will run tests under docker.
'
if
not
args
.
travis
:
print
print
'
Seen --use_docker flag, will run tests under docker.
'
print
'
IMPORTANT: The changes you are testing need to be locally committed
'
print
print
'
because only the committed changes in the current branch will be
'
print
'
IMPORTANT: The changes you are testing need to be locally committed
'
print
'
copied to the docker environment.
'
print
'
because only the committed changes in the current branch will be
'
time
.
sleep
(
5
)
print
'
copied to the docker environment.
'
time
.
sleep
(
5
)
child_argv
=
[
arg
for
arg
in
sys
.
argv
if
not
arg
==
'
--use_docker
'
]
child_argv
=
[
arg
for
arg
in
sys
.
argv
if
not
arg
==
'
--use_docker
'
]
run_tests_cmd
=
'
tools/run_tests/run_tests.py %s
'
%
"
"
.
join
(
child_argv
[
1
:])
run_tests_cmd
=
'
tools/run_tests/run_tests.py %s
'
%
"
"
.
join
(
child_argv
[
1
:])
...
...
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