-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add test for failing tool fixes #48 * adapt number of chunks test * quotes * assure check step failed * Update .github/workflows/tools.yaml Co-authored-by: Nicola Soranzo <[email protected]> --------- Co-authored-by: Nicola Soranzo <[email protected]>
- Loading branch information
1 parent
077cb01
commit ec3879d
Showing
3 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
categories: [Sequence Analysis] | ||
description: just fail | ||
name: fail | ||
owner: adent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<tool id="fail" name="fail" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="MIT"> | ||
<macros> | ||
<token name="@TOOL_VERSION@">0.1.0</token> | ||
<token name="@VERSION_SUFFIX@">0</token> | ||
</macros> | ||
<command detect_errors="exit_code"><![CDATA[ | ||
touch '$out' && | ||
exit 1 | ||
]]></command> | ||
<inputs/> | ||
<outputs> | ||
<data name="out" format="txt"/> | ||
</outputs> | ||
<tests> | ||
<test> | ||
<output name="out"> | ||
<assert_contents> | ||
<has_n_lines n="0"/> | ||
</assert_contents> | ||
</output> | ||
</test> | ||
</tests> | ||
<help><![CDATA[ | ||
**Input** | ||
**Output** | ||
]]></help> | ||
<citations> | ||
<citation type="doi">blah</citation> | ||
</citations> | ||
</tool> |