aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2023-08-26Ensure view gets deleted if view times outGravatar n0Oo0Oo0b-2/+5
2023-08-26Specify which action is being performed in confirmation messageGravatar n0Oo0Oo0b-1/+6
2023-08-26Apply changes from code reviewGravatar n0Oo0Oo0b-2/+2
2023-08-26Mention reminder owner in confirmation messageGravatar Daniel Gu-2/+3
2023-08-26Apply name changes from code review everywhereGravatar Daniel Gu-2/+2
2023-08-26Reply to original message when sending confirmation promptGravatar Daniel Gu-1/+1
2023-08-26Apply suggestions from code reviewGravatar Daniel Gu-1/+1
Co-authored-by: Amrou Bellalouna <[email protected]>
2023-08-26Apply suggestions from code reviewGravatar Daniel Gu-5/+5
Co-authored-by: Amrou Bellalouna <[email protected]>
2023-08-26Update docstring to better match function behaviorGravatar n0Oo0Oo0b-1/+1
2023-08-26Ask for confirmation when an admin modifies another user's remindersGravatar n0Oo0Oo0b-8/+21
2023-08-26Create ModifyConfirmationViewGravatar n0Oo0Oo0b-0/+33
2023-08-26feat(tags): update link and syntax in dotenv tagGravatar miki55555115-3/+3
2023-08-26fix(tags): resolve SyntaxError in dotenv reset commandGravatar miki55555115-2/+2
2023-08-26pass bot to get_or_fetch_channel in thread bumper (#2732)Gravatar Amrou Bellalouna-2/+2
2023-08-26apply white space around operatorsGravatar shtlrs-1/+1
2023-08-26bump pydis_core version to 10.1.0Gravatar shtlrs-106/+113
2023-08-26appease linterGravatar shtlrs-5/+6
2023-08-26pass missing bot paramGravatar shtlrs-9/+9
2023-08-26remove unused pin_no_system_message utilGravatar shtlrs-15/+0
2023-08-26delete members utils moduleGravatar shtlrs-30/+0
2023-08-26use get_or_fetch_member provided by bot-coreGravatar shtlrs-28/+10
2023-08-26use get_or_fetch_channel provided by bot-coreGravatar shtlrs-20/+5
2023-08-26use bot-core caching utilGravatar shtlrs-43/+1
2023-08-26update all instances of send_to_paste_serviceGravatar shtlrs-20/+21
The change resides mainly in specifying the content & lexer in the `PasteFile` instance
2023-08-24Remove call to the fixup reusable workflow (#2731)Gravatar Amrou Bellalouna-6/+0
2023-08-19feat: move link for PEP to title in !pep command (#2723)Gravatar Mikołaj Kruczek-1/+1
2023-08-19Bump ruff from 0.0.284 to 0.0.285 (#2725)Gravatar dependabot[bot]-20/+20
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.284 to 0.0.285. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.284...v0.0.285) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-18Bump pydantic-settings from 2.0.2 to 2.0.3 (#2721)Gravatar dependabot[bot]-5/+5
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-17Bump emoji from 2.7.0 to 2.8.0 (#2724)Gravatar dependabot[bot]-4/+5
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-14Bump coverage from 7.2.7 to 7.3.0 (#2720)Gravatar dependabot[bot]-64/+67
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-12run fixup blocker when git ref isn't mainGravatar shtlrs-3/+5
This also makes the lint-test workflow a dependency since as we'd want to run linting on all fixup commits still
2023-08-12use the organisation's fixup commit blocker workflowGravatar shtlrs-0/+4
2023-08-11Update import style for ruff isort ruleGravatar Chris Lovering-16/+79
ruff's isort rule doesn't allow multiple imports on the same line if wrapping. This is arguably easier to read too.
2023-08-11Use ruff's isort implementationGravatar Chris Lovering-45/+7
2023-08-11Bump ruff from 0.0.283 to 0.0.284 (#2714)Gravatar dependabot[bot]-20/+31
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.283 to 0.0.284. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.283...v0.0.284) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-11Don't use a BaseSettings instance for constants that don't need to be ↵Gravatar Chris Lovering-27/+16
overwritten
2023-08-11Use a custom type coercion function as pydantic removed their'sGravatar Chris Lovering-12/+43
https://docs.pydantic.dev/latest/migration/#changes-to-handling-of-standard-types > While union types will still attempt validation of each choice from left to right, they now preserve the type of the input whenever possible, even if the correct type is not the first choice for which the input would pass validation
2023-08-11Replace deprecated functions with new pydantic v2 functionsGravatar Chris Lovering-42/+53
2023-08-11Use new Pydantic v2 logic for constant loadingGravatar Chris Lovering-275/+246
2023-08-11Bump pydantic to v2 and install pydantic-settingsGravatar Chris Lovering-71/+166
2023-08-10Bump ruff from 0.0.282 to 0.0.283Gravatar dependabot[bot]-21/+21
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.282 to 0.0.283. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.282...v0.0.283) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
2023-08-09Bump regex from 2023.6.3 to 2023.8.8 (#2711)Gravatar dependabot[bot]-91/+91
Bumps [regex](https://github.com/mrabarnett/mrab-regex) from 2023.6.3 to 2023.8.8. - [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt) - [Commits](https://github.com/mrabarnett/mrab-regex/compare/2023.6.3...2023.8.8) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-06Bump more-itertools from 10.0.0 to 10.1.0 (#2707)Gravatar dependabot[bot]-5/+5
Bumps [more-itertools](https://github.com/more-itertools/more-itertools) from 10.0.0 to 10.1.0. - [Release notes](https://github.com/more-itertools/more-itertools/releases) - [Commits](https://github.com/more-itertools/more-itertools/commits) --- updated-dependencies: - dependency-name: more-itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-06Fix docs link markdown (#2708)Gravatar Numerlor-0/+2
2023-08-05Change DM users get when warned (#2696)Gravatar Steele Farnsworth-13/+31
2023-08-03Bump rapidfuzz from 3.1.2 to 3.2.0 (#2706)Gravatar dependabot[bot]-95/+95
Bumps [rapidfuzz](https://github.com/maxbachmann/RapidFuzz) from 3.1.2 to 3.2.0. - [Release notes](https://github.com/maxbachmann/RapidFuzz/releases) - [Changelog](https://github.com/maxbachmann/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/maxbachmann/RapidFuzz/compare/v3.1.2...v3.2.0) --- updated-dependencies: - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-02Bump ruff from 0.0.280 to 0.0.282 (#2703)Gravatar dependabot[bot]-20/+20
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.280 to 0.0.282. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.0.280...v0.0.282) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-02Bump sentry-sdk from 1.29.1 to 1.29.2 (#2704)Gravatar dependabot[bot]-5/+5
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.29.1 to 1.29.2. - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-python/compare/1.29.1...1.29.2) --- updated-dependencies: - dependency-name: sentry-sdk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-02Bump taskipy from 1.11.0 to 1.12.0 (#2699)Gravatar dependabot[bot]-5/+5
Bumps [taskipy](https://github.com/taskipy/taskipy) from 1.11.0 to 1.12.0. - [Commits](https://github.com/taskipy/taskipy/compare/1.11.0...1.12.0) --- updated-dependencies: - dependency-name: taskipy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-02Bump sentry-sdk from 1.28.1 to 1.29.1 (#2702)Gravatar dependabot[bot]-5/+5
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.28.1 to 1.29.1. - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-python/compare/1.28.1...1.29.1) --- updated-dependencies: - dependency-name: sentry-sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>