Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/galaxy/tools/stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
def stock_tool_paths():
yield from _walk_directory_for_tools(files(galaxy.tools))
yield from _walk_directory_for_tools(Path(galaxy_directory()) / "test" / "functional" / "tools")
yield from _walk_directory_for_tools(Path(galaxy_directory()) / "tools")


def stock_tool_sources():
Expand Down
1 change: 1 addition & 0 deletions test/unit/app/tools/test_stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ def test_stock_tool_paths():
assert "merge_collection.xml" in file_names
assert "meme.xml" in file_names
assert "output_auto_format.xml" in file_names
assert "parse_values_from_file.xml" in file_names


def test_stock_tool_sources():
Expand Down
Loading