Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pycalibration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor 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
calibration
pycalibration
Merge requests
!194
fix/gitpush_flag
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix/gitpush_flag
fix/gitpush_flag
into
master
Overview
1
Commits
1
Pipelines
0
Changes
1
Merged
Karim Ahmed
requested to merge
fix/gitpush_flag
into
master
5 years ago
Overview
1
Commits
1
Pipelines
0
Changes
1
Expand
@karnem
the dest was wrong and flag was always false from manual_run side.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
203d3750
1 commit,
5 years ago
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
reportservice/manual_run.py
+
1
−
1
Options
@@ -37,7 +37,7 @@ arg_parser.add_argument('--instrument', default=['all'], nargs='+',
@@ -37,7 +37,7 @@ arg_parser.add_argument('--instrument', default=['all'], nargs='+',
help
=
'
select the requested instruments.
'
help
=
'
select the requested instruments.
'
'
Default=
\"
all
\"
, which can be used for selecting
'
'
Default=
\"
all
\"
, which can be used for selecting
'
'
all instruments
'
)
'
all instruments
'
)
arg_parser
.
add_argument
(
'
--gitpush
'
,
dest
=
'
Push to git
'
,
action
=
'
store_true
'
,
arg_parser
.
add_argument
(
'
--gitpush
'
,
dest
=
'
gitpush
'
,
action
=
'
store_true
'
,
help
=
'
required for pushing the generated figures
'
help
=
'
required for pushing the generated figures
'
'
to the DC git repository. Default=bool(False)
'
)
'
to the DC git repository. Default=bool(False)
'
)
arg_parser
.
set_defaults
(
gitpush
=
False
)
arg_parser
.
set_defaults
(
gitpush
=
False
)
Loading