From ca14ee0cd719253253947875b29c0409928790fe Mon Sep 17 00:00:00 2001 From: KShivendu Date: Wed, 2 Aug 2023 15:31:55 +0530 Subject: [PATCH] chores: Improve PR template --- .github/PULL_REQUEST_TEMPLATE.md | 6 ++++-- ...test_access_token_v3.py => test_access_token_version.py} | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename tests/sessions/{test_access_token_v3.py => test_access_token_version.py} (100%) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d242c59bf..0383b1a83 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -31,8 +31,10 @@ - [ ] If have added a new web framework, update the `supertokens_python/utils.py` file to include that in the `FRAMEWORKS` variable - [ ] If added a new recipe that has a User type with extra info, then be sure to change the User type in supertokens_python/types.py - [ ] Make sure that `syncio` / `asyncio` functions are consistent. - +- [ ] If access token structure has changed + - Modified test in `tests/sessions/test_access_token_version.py` to account for any new claims that are optional or omitted by the core + ## Remaining TODOs for this PR - [ ] Item1 -- [ ] Item2 \ No newline at end of file +- [ ] Item2 diff --git a/tests/sessions/test_access_token_v3.py b/tests/sessions/test_access_token_version.py similarity index 100% rename from tests/sessions/test_access_token_v3.py rename to tests/sessions/test_access_token_version.py