diff options
| author | Carlton Gibson <carlton.gibson@noumenal.es> | 2019-10-24 10:43:05 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-10-24 10:43:05 +0200 |
| commit | e83c300a3312995d46315616f4361dfa110c741b (patch) | |
| tree | 314436a958db9cce99adc642eb4619ab4863d147 /tests/async | |
| parent | fa5f3291e7f2611d53e64ab481ebe951b0161791 (diff) | |
Fixed #30900 -- Skipped async-related tests on Windows using Python 3.8.0.
Refs https://bugs.python.org/issue38563.
Diffstat (limited to 'tests/async')
| -rw-r--r-- | tests/async/tests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/async/tests.py b/tests/async/tests.py index 1e1cabc1c6..450a38018d 100644 --- a/tests/async/tests.py +++ b/tests/async/tests.py @@ -1,3 +1,6 @@ +import sys +from unittest import skipIf + from asgiref.sync import async_to_sync from django.core.exceptions import SynchronousOnlyOperation @@ -7,6 +10,7 @@ from django.utils.asyncio import async_unsafe from .models import SimpleModel +@skipIf(sys.platform == 'win32' and (3, 8, 0) < sys.version_info < (3, 8, 1), 'https://bugs.python.org/issue38563') class DatabaseConnectionTest(SimpleTestCase): """A database connection cannot be used in an async context.""" @async_to_sync @@ -15,6 +19,7 @@ class DatabaseConnectionTest(SimpleTestCase): list(SimpleModel.objects.all()) +@skipIf(sys.platform == 'win32' and (3, 8, 0) < sys.version_info < (3, 8, 1), 'https://bugs.python.org/issue38563') class AsyncUnsafeTest(SimpleTestCase): """ async_unsafe decorator should work correctly and returns the correct |
