aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2020-05-22Fix assertion for `create_task` in duck pond testsGravatar MarkKoz-1/+1
The assertion wasn't using the assertion method. Furthermore, it was testing a non-existent function `create_loop` rather than `create_task`.
2020-05-22Set up async testbedGravatar Leon Sandøy-198/+135
2020-05-22Opens a Redis connection in the Bot class.Gravatar Leon Sandøy-3/+20
This global connection is the one we will be using in RedisCache to power all our commands. This also ensures that connection is closed when the bot starts its shutdown process.
2020-05-22Replace redis-py with aioredis.Gravatar Leon Sandøy-60/+104
2020-05-22Add the REDIS_PASSWORD environment variableGravatar Leon Sandøy-137/+115
In production, we will need this password to make a connection to Redis.
2020-05-17Add the REDIS_PASSWORD environment variableGravatar Leon Sandøy-6/+17
In production, we will need this password to make a connection to Redis.
2020-05-17Changes discord-py to discord.py in PipfileGravatar Leon Sandøy-7/+15
The `discord-py` package is no longer the official release, and so making this change silences some warnings about deprecation.
2020-05-17Fix linting errors introduced by flake8 3.8Gravatar Leon Sandøy-34/+34
Turns out that bumping the flake8 version up to 3.8 introduces a long list of new linting errors. Since this PR is the one that bumps the version, I suppose we will also fix all the linting errors in this branch.
2020-05-17namespace "general" -> "global"Gravatar Leon Sandøy-1/+1
2020-05-17Make redis host and port configurable.Gravatar Leon Sandøy-1/+11