diff --git a/Makefile b/Makefile index bf13e1117c..339a68c069 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ format: .venv .PHONY: format test: .venv - @$(VENV_PATH)/bin/tox -e py2.7,py3.7 + @$(VENV_PATH)/bin/tox -e py3.9 .PHONY: test test-all: .venv diff --git a/tests/integrations/asyncio/__init__.py b/tests/integrations/asyncio/__init__.py index e69de29bb2..1b887a03fe 100644 --- a/tests/integrations/asyncio/__init__.py +++ b/tests/integrations/asyncio/__init__.py @@ -0,0 +1,3 @@ +import pytest + +pytest.importorskip("pytest_asyncio") diff --git a/tox.ini b/tox.ini index 2067ff8916..7ea7169e71 100644 --- a/tox.ini +++ b/tox.ini @@ -111,6 +111,8 @@ deps = py3.4: colorama==0.4.1 py3.4: watchdog==0.10.7 + {py3.8,py3.9,py3.10}: pytest-asyncio + django-{1.11,2.0,2.1,2.2,3.0,3.1,3.2}: djangorestframework>=3.0.0,<4.0.0 {py3.7,py3.8,py3.9,py3.10}-django-{1.11,2.0,2.1,2.2,3.0,3.1,3.2}: channels[daphne]>2