mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 18:32:32 -05:00
* Update deps + allow Python 3.9
* Add in updates from Jack's branch
* Fix multiple target for cross-reference warnings
* Update a few more Python 3.8 occurrences
* Bump further
* Don't install tox in CodeQL environment
* Bump Python version in docs to 3.9.7
* more bumps
* Add missing pin
* Stop using the deprecated distro.linux_distribution()
* Suppress deprecation warning
* Fix OpenSUSE Leap instructions
* Drop Fedora 32
* Add Python 3.10-dev to CI
* meh
(cherry picked from commit 3254698c78)
Co-authored-by: palmtree5 <3577255+palmtree5@users.noreply.github.com>
Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
Co-authored-by: palmtree5 <3577255+palmtree5@users.noreply.github.com>
Co-authored-by: jack1142 <6032823+jack1142@users.noreply.github.com>
This commit is contained in:
@@ -531,7 +531,7 @@ async def test_config_value_atomicity(config):
|
||||
await asyncio.sleep(0.1)
|
||||
await config.foo.set(foo)
|
||||
|
||||
tasks.append(func())
|
||||
tasks.append(asyncio.create_task(func()))
|
||||
|
||||
await asyncio.wait(tasks, return_when=asyncio.ALL_COMPLETED)
|
||||
|
||||
@@ -549,7 +549,7 @@ async def test_config_ctxmgr_atomicity(config):
|
||||
foo.append(0)
|
||||
await asyncio.sleep(0.1)
|
||||
|
||||
tasks.append(func())
|
||||
tasks.append(asyncio.create_task(func()))
|
||||
|
||||
await asyncio.wait(tasks, return_when=asyncio.ALL_COMPLETED)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user