Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pyfeeds
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
FSL
pyfeeds
Commits
6acc093c
Commit
6acc093c
authored
2 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
RF: Default output directory
parent
d538d86f
No related branches found
No related tags found
1 merge request
!30
Mnt/default output dir
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyfeeds/main.py
+4
-2
4 additions, 2 deletions
pyfeeds/main.py
with
4 additions
and
2 deletions
pyfeeds/main.py
+
4
−
2
View file @
6acc093c
...
@@ -526,7 +526,8 @@ def parseArgs(argv):
...
@@ -526,7 +526,8 @@ def parseArgs(argv):
# Shared options
# Shared options
'
inputDir
'
:
'
Location of input data directory
'
,
'
inputDir
'
:
'
Location of input data directory
'
,
'
benchmarkDir
'
:
'
Location of benchmark data directory
'
,
'
benchmarkDir
'
:
'
Location of benchmark data directory
'
,
'
outputDir
'
:
'
Location of output directory
'
,
'
outputDir
'
:
'
Location of output directory. Defaults to
'
'"
pyfeeds-out
"'
,
'
overwrite
'
:
'
Overwrite output directory if it exists
'
,
'
overwrite
'
:
'
Overwrite output directory if it exists
'
,
'
config
'
:
'
Pyfeeds configuration file
'
,
'
config
'
:
'
Pyfeeds configuration file
'
,
'
hashFile
'
:
'
File to read/write test hashes (default:
'
'
hashFile
'
:
'
File to read/write test hashes (default:
'
...
@@ -702,7 +703,8 @@ def parseArgs(argv):
...
@@ -702,7 +703,8 @@ def parseArgs(argv):
# Options shared by the run/bundle sub-commands
# Options shared by the run/bundle sub-commands
runbunParser
=
argparse
.
ArgumentParser
(
add_help
=
False
)
runbunParser
=
argparse
.
ArgumentParser
(
add_help
=
False
)
runbunParser
.
add_argument
(
*
flags
[
'
outputDir
'
],
runbunParser
.
add_argument
(
*
flags
[
'
outputDir
'
],
help
=
helps
[
'
outputDir
'
])
help
=
helps
[
'
outputDir
'
],
default
=
'
pyfeeds-out
'
)
runbunParser
.
add_argument
(
*
flags
[
'
overwrite
'
],
runbunParser
.
add_argument
(
*
flags
[
'
overwrite
'
],
help
=
helps
[
'
overwrite
'
],
help
=
helps
[
'
overwrite
'
],
action
=
'
store_true
'
)
action
=
'
store_true
'
)
...
...
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