This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Add Django 4.2 support in CI in Registrar #550
Closed
+35
−32
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
02c1546
fix: django 4.2 issues
irtazaakram 255bfff
fix: test
irtazaakram bb8d030
chore: fixing
awais786 e75af99
chore: When run `test_discovery_program_get` this test locally it fai…
awais786 f8fbad0
chore: checking with django40
awais786 3856039
Merge branch 'master' into add-django42
awais786 2b5f72a
chore: checking with django40
awais786 0272db9
Merge remote-tracking branch 'origin/add-django42' into add-django42
awais786 e61ee67
chore: checking with django40
awais786 d621bc6
chore: checking with django40
awais786 0c5a138
chore: Fixing the test.
awais786 1abb186
chore: Fixing the quality.
awais786 19a3585
chore: Fixing the quality.
awais786 903445c
chore: Updating Python Requirements (#566)
edx-requirements-bot 2051c2f
chore: Fixing the quality.
awais786 515ef27
Merge remote-tracking branch 'origin/add-django42' into add-django42
awais786 8d7ec5d
chore: Update ci.yml
awais786 77c0efa
chore: Update test_discovery_cache.py
awais786 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
[tox] | ||
envlist = py38-django{32} | ||
envlist = py38-django{32, 42} | ||
skipsdist = true | ||
|
||
[testenv] | ||
passenv = * | ||
deps = | ||
django32: -r requirements/django.txt | ||
django42: Django>=4.2,<5.0 | ||
-r{toxinidir}/requirements/test.txt | ||
whitelist_externals = | ||
i18n_tool | ||
/bin/bash | ||
commands = {posargs:pytest} | ||
commands = {posargs:pytest} | ||
setenv = | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tox gives error locally due to boto issue. |
||
AWS_DEFAULT_REGION=us-east-1 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this change needed?