Skip to content

Commit

Permalink
Fix linting, regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jul 1, 2024
1 parent 4cf0e82 commit 4a72abd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 1 addition & 2 deletions docs/commands/lint.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ Check for common errors and best practices.
(e.g. passing --skip 'citations,xml_order'
would skip linting of citations and best-
practice XML ordering.
--xsd / --no_xsd Include tool XSD validation in linting
process.
--skip_file FILE File containing a list of lint tests to skip
-r, --recursive Recursively perform command for
subdirectories.
--urls Check validity of URLs in XML files
Expand Down
5 changes: 3 additions & 2 deletions docs/commands/run.rst
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,9 @@ Planemo command for running tools and jobs.
--galaxy_user_key TEXT User key to use with external Galaxy engine.
--history_name TEXT Name to give a Galaxy history, if one is
created.
--history_id TEXT Do not create a new history. Send the results
of the run in the history with the provided ID.
--history_id TEXT Send the results of the run to the history
with the provided ID. A history with this ID
must exist.
--no_wait After invoking a job or workflow, do not wait
for completion.
--paste_test_data_paths / --no_paste_test_data_paths
Expand Down
3 changes: 1 addition & 2 deletions docs/commands/shed_lint.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ help text for mentioned URLs and checks those.
(e.g. passing --skip 'citations,xml_order'
would skip linting of citations and best-
practice XML ordering.
--skip_file FILE File containing a list of lint tests to skip
--tools Lint tools discovered in the process of
linting repositories.
--xsd / --no_xsd Include tool XSD validation in linting
process.
--ensure_metadata Ensure .shed.yml files contain enough metadata
for each repository to allow automated
creation and/or updates.
Expand Down
3 changes: 3 additions & 0 deletions docs/commands/test.rst
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ please careful and do not try this against production Galaxy instances.
--galaxy_user_key TEXT User key to use with external Galaxy engine.
--history_name TEXT Name to give a Galaxy history, if one is
created.
--history_id TEXT Send the results of the run to the history
with the provided ID. A history with this ID
must exist.
--no_wait After invoking a job or workflow, do not wait
for completion.
--help Show this message and exit.
Expand Down
3 changes: 2 additions & 1 deletion planemo/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,11 +523,12 @@ def history_name():
help="Name to give a Galaxy history, if one is created.",
)


def history_id():
return planemo_option(
"--history_id",
type=str,
help="Do not create a new history. Send the results of the run in the history with the provided ID.",
help="Send the results of the run to the history with the provided ID. A history with this ID must exist.",
)


Expand Down

0 comments on commit 4a72abd

Please sign in to comment.