Skip to content

Commit

Permalink
Option to parse tool test information from ToolSource instead of Tool…
Browse files Browse the repository at this point in the history
… internals.
  • Loading branch information
jmchilton committed Jul 18, 2024
1 parent 749dee0 commit 2458389
Show file tree
Hide file tree
Showing 4 changed files with 576 additions and 98 deletions.
6 changes: 3 additions & 3 deletions lib/galaxy/tool_util/verify/interactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ class ValidToolTestDict(TypedDict):
output_collections: List[Dict[str, Any]]
stdout: NotRequired[AssertionList]
stderr: NotRequired[AssertionList]
expect_exit_code: NotRequired[int]
expect_exit_code: NotRequired[Optional[Union[str, int]]]
expect_failure: NotRequired[bool]
expect_test_failure: NotRequired[bool]
maxseconds: NotRequired[int]
num_outputs: NotRequired[int]
maxseconds: NotRequired[Optional[int]]
num_outputs: NotRequired[Optional[Union[str, int]]]
command_line: NotRequired[AssertionList]
command_version: NotRequired[AssertionList]
required_files: NotRequired[List[Any]]
Expand Down
Loading

0 comments on commit 2458389

Please sign in to comment.