aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_deps.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_deps.py')
-rw-r--r--tests/test_deps.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_deps.py b/tests/test_deps.py
new file mode 100644
index 0000000..10d313e
--- /dev/null
+++ b/tests/test_deps.py
@@ -0,0 +1,11 @@
+def test_gunicorn_regression() -> None:
+ """
+ Had a problem where these two libraries were not included and running
+ uvicorn under gunicorn failed.
+ """
+ import uvloop
+
+ uvloop.__version__
+ import httptools
+
+ httptools.__version__