From 81b2a4b6b2a79b71242be3109cb95c956576ad48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20Hol=C3=BD?= Date: Wed, 20 Mar 2024 09:14:49 +0100 Subject: [PATCH] Work around https://github.com/SmileyChris/django-countries/issues/442 --- tox.ini | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 42974c3..34d07f4 100644 --- a/tox.ini +++ b/tox.ini @@ -9,8 +9,11 @@ envlist = [testenv] setenv = PYTHONPATH = {toxinidir}:{toxinidir}/plans_payments +# TODO: Work around https://github.com/SmileyChris/django-countries/issues/442 +#commands = +# python -W error::DeprecationWarning -m coverage run manage.py test commands = - python -W error::DeprecationWarning -m coverage run manage.py test + python -m coverage run manage.py test deps = django-31: Django>=3.1,<3.2 django-32: Django>=3.2,<3.3