mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Because Travis CI seems to be on vacation... https://travis-ci.org/github/benoitc/gunicorn
13 lines
310 B
Python
13 lines
310 B
Python
# -*- coding: utf-8 -
|
|
#
|
|
# This file is part of gunicorn released under the MIT license.
|
|
# See the NOTICE for more information.
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.xfail(
|
|
reason="TypeError: cannot set 'is_timeout' of immutable type 'TimeoutError'"
|
|
)
|
|
def test_import():
|
|
__import__('gunicorn.workers.geventlet')
|