mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Merge branch 'release_23.1' into release_23.2
This commit is contained in:
@@ -5406,12 +5406,20 @@ on Human (hg18)``.
|
||||
|
||||
<xs:group name="OutputCollectionElement">
|
||||
<xs:choice>
|
||||
<xs:element name="data" type="OutputData" />
|
||||
<xs:element name="data" type="OutputCollectionDataElement" />
|
||||
<xs:element name="discover_datasets" type="OutputCollectionDiscoverDatasets" />
|
||||
<xs:element name="filter" type="OutputFilter" />
|
||||
</xs:choice>
|
||||
</xs:group>
|
||||
|
||||
<xs:complexType name="OutputCollectionDataElement">
|
||||
<xs:sequence>
|
||||
<xs:group ref="OutputCollectionElement" minOccurs="0" maxOccurs="unbounded" />
|
||||
</xs:sequence>
|
||||
<xs:attributeGroup ref="OutputCommon" />
|
||||
<xs:attributeGroup ref="OutputDataAttributes" />
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="OutputCollection">
|
||||
<xs:annotation>
|
||||
<xs:documentation xml:lang="en"><![CDATA[
|
||||
@@ -5459,7 +5467,6 @@ This tag describes an output to the tool.
|
||||
</xs:annotation>
|
||||
<xs:sequence>
|
||||
<xs:group ref="OutputDataElement" minOccurs="0" maxOccurs="unbounded" />
|
||||
<xs:group ref="OutputCollectionElement" minOccurs="0" maxOccurs="unbounded" />
|
||||
</xs:sequence>
|
||||
<xs:attributeGroup ref="OutputCommon"/>
|
||||
<xs:attributeGroup ref="OutputCollectionAttributes"/>
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
import os
|
||||
|
||||
import pytest
|
||||
from fs.errors import RemoteConnectionError
|
||||
|
||||
from ._util import (
|
||||
assert_realizes_contains,
|
||||
configured_file_sources,
|
||||
@@ -19,12 +22,15 @@ def test_file_source_ftp_specific():
|
||||
assert file_source_pair.path == test_url
|
||||
assert file_source_pair.file_source.id == "test1"
|
||||
|
||||
assert_realizes_contains(
|
||||
file_sources,
|
||||
test_url,
|
||||
"This is ftp.gnu.org, the FTP server of the the GNU project.",
|
||||
user_context=user_context,
|
||||
)
|
||||
try:
|
||||
assert_realizes_contains(
|
||||
file_sources,
|
||||
test_url,
|
||||
"This is ftp.gnu.org, the FTP server of the the GNU project.",
|
||||
user_context=user_context,
|
||||
)
|
||||
except RemoteConnectionError:
|
||||
pytest.skip("ftp.gnu.org not available")
|
||||
|
||||
|
||||
def test_file_source_ftp_generic():
|
||||
|
||||
Reference in New Issue
Block a user