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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
7b16bbe5
Commit
7b16bbe5
authored
Nov 10, 2016
by
matt-kwong
Committed by
GitHub
Nov 10, 2016
Browse files
Options
Downloads
Plain Diff
Merge pull request #8706 from matt-kwong/pull-request-params
Show skipped tests not showing up in Jenkins UI
parents
a5da0ef0
aa6c94cb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/run_tests/run_tests_matrix.py
+3
-1
3 additions, 1 deletion
tools/run_tests/run_tests_matrix.py
with
3 additions
and
1 deletion
tools/run_tests/run_tests_matrix.py
+
3
−
1
View file @
7b16bbe5
...
@@ -311,7 +311,9 @@ if __name__ == "__main__":
...
@@ -311,7 +311,9 @@ if __name__ == "__main__":
print
(
'
No tests will be skipped.
'
)
print
(
'
No tests will be skipped.
'
)
else
:
else
:
print
(
'
These tests will be skipped:
'
)
print
(
'
These tests will be skipped:
'
)
skipped_jobs
=
[
job
for
job
in
jobs
if
job
not
in
relevant_jobs
]
skipped_jobs
=
list
(
set
(
jobs
)
-
set
(
relevant_jobs
))
# Sort by shortnames to make printing of skipped tests consistent
skipped_jobs
.
sort
(
key
=
lambda
job
:
job
.
shortname
)
for
job
in
list
(
skipped_jobs
):
for
job
in
list
(
skipped_jobs
):
print
(
'
%s
'
%
job
.
shortname
)
print
(
'
%s
'
%
job
.
shortname
)
jobs
=
relevant_jobs
jobs
=
relevant_jobs
...
...
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
sign in
to comment