-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Support listing file sources asynchronously"
This reverts commit 668437a.
- Loading branch information
Showing
23 changed files
with
144 additions
and
207 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
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
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
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
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
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 |
---|---|---|
|
@@ -2,5 +2,4 @@ mock-ssh-server | |
pkce | ||
pykwalify | ||
pytest | ||
pytest-asyncio | ||
testfixtures |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pytest | ||
pytest-asyncio | ||
fs-gcsfs | ||
s3fs>=2023.1.0,<2024 |
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 |
---|---|---|
|
@@ -8,14 +8,9 @@ | |
|
||
from galaxy.app_unittest_utils import galaxy_mock | ||
from galaxy.managers.users import UserManager | ||
from galaxy.util.unittest import ( | ||
IsolatedAsyncioTestCase, | ||
TestCase, | ||
) | ||
from galaxy.util.unittest import TestCase | ||
from galaxy.work.context import SessionRequestContext | ||
|
||
__all__ = ("BaseIsolatedAsyncioTestCase", "BaseTestCase", "CreatesCollectionsMixin") | ||
|
||
# ============================================================================= | ||
admin_email = "[email protected]" | ||
admin_users = admin_email | ||
|
@@ -109,14 +104,6 @@ def assertIsJsonifyable(self, item): | |
assert isinstance(json.dumps(item), str) | ||
|
||
|
||
class BaseIsolatedAsyncioTestCase(BaseTestCase, IsolatedAsyncioTestCase): | ||
""" | ||
Asynchronous version of `BaseTestCase`. | ||
Can run sync tests too. | ||
""" | ||
|
||
|
||
class CreatesCollectionsMixin: | ||
trans: SessionRequestContext | ||
|
||
|
Oops, something went wrong.