gunicorn/tests/workers/test_geventlet.py
2024-04-22 03:33:14 +02:00

17 lines
389 B
Python

#
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
import pytest
import sys
def test_import():
try:
import eventlet
except AttributeError:
if (3,13) > sys.version_info >= (3, 12):
pytest.skip("Ignoring eventlet failures on Python 3.12")
raise
__import__('gunicorn.workers.geventlet')