diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_deps.py | 11 |
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__ |