tests: run wcs tests only against python 3 (#40008)

This commit is contained in:
Valentin Deniaud 2020-02-19 13:43:57 +01:00
parent 558fefdfb5
commit a731cd2029
1 changed files with 4 additions and 0 deletions

View File

@ -5,10 +5,14 @@ import django_webtest
from django.core.files import File
from django.core.cache import cache
from django.utils import six
from io import BytesIO
from utils import make_resource
if six.PY2:
collect_ignore = ['wcs/']
@pytest.fixture(autouse=True)
def media(settings, tmpdir):