-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Python 3.8. Add Django 5.1 and Python 3.13 (#348)
* Add Django 5.1 and Python 3.13 to test matrix. * Bump setup-python and allow pre-releases. * Drop python 3.8 It was limiting our installation of cffi which caused errors for cryptography and python 3.13. * Exclude Django 4.2 and Python 3.13 from test suite. * Use the latest patches for Django and DRF * Disconnect the post_save signal handler to avoid test leakage
- Loading branch information
1 parent
5ea3c87
commit 9799b46
Showing
7 changed files
with
414 additions
and
399 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -348,6 +348,7 @@ def create_profile(sender, instance, created, **kwargs): | |
self.assertEqual(user.last_name, "Doe") | ||
self.assertEqual(user.email, "[email protected]") | ||
self.assertEqual(user.profile.employee_id, 182) | ||
post_save.disconnect(create_profile, sender=User) | ||
|
||
@mock_adfs("2016") | ||
def test_authentication(self): | ||
|