From 88a5d88d508cf0c055f47ffa24a878be7c9655af Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 5 May 2020 16:07:42 +0200 Subject: [PATCH 10/10] tox.ini: ignore warning between Django 1.11 and Python 3.8 (#42504) --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git tox.ini tox.ini index 666085f4..64993e0a 100644 --- tox.ini +++ tox.ini @@ -117,6 +117,9 @@ filterwarnings = ignore:Using or importing the ABCs from 'collections':DeprecationWarning:django.* ignore:Role QuerySet won't use Meta.ordering::django\..* ignore:Using user.is_authenticated\(\) and user.is_anonymous\(\) as a method is deprecated.::rest_framework\.* +# warning of gettext() when using Django 1.11 with Python 3.8 + ignore:set_output_charset\(\) is deprecated::django.utils.translation.trans_real + ignore:parameter codeset is deprecated::django.utils.translation.trans_real # remind us later once:.*staticfiles.*::django\..* junit_family=xunit2 -- 2.26.0