1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Removed stale Windows asyncio test skips.

Underlying issue was fixed in Python 3.8.1, now many versions ago.
https://bugs.python.org/issue38563
This commit is contained in:
Carlton Gibson
2022-04-14 10:43:34 +02:00
parent a0bd006306
commit 5c67d906fd
2 changed files with 1 additions and 19 deletions

View File

@@ -2,7 +2,6 @@ import asyncio
import sys
import threading
from pathlib import Path
from unittest import skipIf
from asgiref.testing import ApplicationCommunicator
@@ -23,10 +22,6 @@ from .urls import sync_waiter, test_filename
TEST_STATIC_ROOT = Path(__file__).parent / "project" / "static"
@skipIf(
sys.platform == "win32" and (3, 8, 0) < sys.version_info < (3, 8, 1),
"https://bugs.python.org/issue38563",
)
@override_settings(ROOT_URLCONF="asgi.urls")
class ASGITest(SimpleTestCase):
async_request_factory = AsyncRequestFactory()