Skip to content
Snippets Groups Projects
Commit 3f5f2c60 authored by Renaud Boyer's avatar Renaud Boyer
Browse files

django: Transitional FORMS_URLFIELD_ASSUME_HTTPS setting

parent a25c9d3a
No related branches found
No related tags found
1 merge request!1318tests: Reduce the number of warnings raised
......@@ -109,7 +109,7 @@ describe('Test add forge now request dashboard load', function() {
.should('contain', 'bitbucket');
cy.get('#requestURL a')
.should('have.attr', 'href', 'http://test.example.com');
.should('have.attr', 'href', 'https://test.example.com');
cy.get('#requestContactEmail')
.should('contain', 'test@example.com');
......
......@@ -13,6 +13,7 @@ filterwarnings =
ignore:.*Using or importing the ABCs from 'collections'
ignore:.*uses the.*fixture, which is reset between function calls
ignore:.*'U' mode is deprecated
ignore:.*FORMS_URLFIELD_ASSUME_HTTPS transitional setting is deprecated.
consider_namespace_packages = true
markers =
inbound_message: used to pass a message parameter to the inbound_message fixture
\ No newline at end of file
......@@ -419,3 +419,6 @@ RATELIMIT_IP_META_KEY = lambda request: request.META.get( # noqa
).split(",", maxsplit=1)[0]
DATA_UPLOAD_MAX_MEMORY_SIZE = 10485760 # 10Mb
# XXX Transitional setting that will be removed in Django 6.0
FORMS_URLFIELD_ASSUME_HTTPS = True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment