mirror of
https://github.com/django/daphne.git
synced 2025-12-08 02:03:55 +03:00
* Move project tests to its own directory. * Install mock test dependency for Python2 only. * Do not install tox inside tox environment. * Exclude tests from sdist. * Use recent pip on Travis-CI.
10 lines
299 B
Python
10 lines
299 B
Python
import warnings
|
|
|
|
warnings.warn(
|
|
"channels.tests package is deprecated. Use channels.test",
|
|
DeprecationWarning,
|
|
)
|
|
|
|
from channels.test.base import TransactionChannelTestCase, ChannelTestCase, Client, apply_routes # NOQA isort:skip
|
|
from channels.test.http import HttpClient # NOQA isort:skip
|