Skip to content

Commit 8c77a4c

Browse files
authored
Merge pull request #1491 from jdavcs/galaxy_24.2
Bump requirements for galaxy packages to 24.2
2 parents 8ef50e4 + e1023fe commit 8c77a4c

17 files changed

+28
-37
lines changed

planemo/linters/doi.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" Tool linting module that lints Galaxy tools for their DOIs (if a DOI type citation is present)
2-
"""
1+
"""Tool linting module that lints Galaxy tools for their DOIs (if a DOI type citation is present)"""
32

43
import planemo.lint
54

planemo/linters/urls.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" Tool linting module that lints Galaxy tools for their URLs
2-
"""
1+
"""Tool linting module that lints Galaxy tools for their URLs"""
32

43
import planemo.lint
54

planemo/shed2tap/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
"""
2-
"""
1+
""" """

planemo/virtualenv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" Utilities for using virtualenv as library and planemo command.
2-
"""
1+
"""Utilities for using virtualenv as library and planemo command."""
32

43
import os
54
import sys

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ bioblend>=1.0.0
33
click!=8.0.2
44
cwltool>=1.0.20191225192155
55
ephemeris>=0.10.3
6-
galaxy-tool-util[edam,extended-assertions]>=24.1,<24.2
7-
galaxy-util[template]>=24.1,<24.2
6+
galaxy-tool-util[edam,extended-assertions]>=24.1,<25.0
7+
galaxy-util[template]>=24.1,<25.0
88
glob2
99
gxformat2>=0.14.0
1010
h5py

tests/data/lint_skip_list.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# check that comments work
2-
xml_order
2+
XMLOrder
33
# check the white spaces are ignored
4-
citations
4+
CitationsMissing

tests/data/tools/empty_cdata.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
</outputs>
1717
<tests>
1818
<test>
19-
<param name="select_opt" value="Hello World!" />
19+
<param name="select_opt" value="moo" />
2020
<output name="output">
2121
<assert_contents>
22-
<has_line line="Hello World!" />
22+
<has_line line="moo" />
2323
</assert_contents>
2424
</output>
2525
</test>

tests/data/tools/ok_conditional.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
</outputs>
1818
<tests>
1919
<test>
20-
<param name="select_opt" value="Hello World!" />
20+
<param name="conditional|select_opt" value="moo" />
2121
<output name="output">
2222
<assert_contents>
23-
<has_line line="Hello World!" />
23+
<has_line line="moo" />
2424
</assert_contents>
2525
</output>
2626
</test>

tests/data/tools/ok_param_argument.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<tests>
1414
<test expect_failure="true" expect_exit_code="1">
1515
<param name="input1" value="1.bed"/>
16+
<param name="r" value="1.bed"/>
1617
<assert_stdout>
1718
<has_line line="Indexed 0 sequences" />
1819
</assert_stdout>

tests/data/tools/ok_select_param.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
</outputs>
1414
<tests>
1515
<test>
16-
<param name="select_opt" value="Hello World!" />
16+
<param name="select_opt" value="moo" />
1717
<output name="output">
1818
<assert_contents>
19-
<has_line line="Hello World!" />
19+
<has_line line="moo" />
2020
</assert_contents>
2121
</output>
2222
</test>

0 commit comments

Comments
 (0)