From 3d8cd86f7898ea14acec5c889372220d170314d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Mon, 18 Mar 2019 10:21:00 +0200 Subject: Removed skipping of Gevent tests on Python 3.7 Recent versions of Gevent now work properly with Python 3.7. --- tests/test_schedulers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_schedulers.py b/tests/test_schedulers.py index 73baef4..b27a286 100644 --- a/tests/test_schedulers.py +++ b/tests/test_schedulers.py @@ -1,5 +1,4 @@ import logging -import sys from datetime import datetime, timedelta from threading import Thread @@ -971,7 +970,6 @@ class TestAsyncIOScheduler(SchedulerImplementationTestBase): thread.join() -@pytest.mark.skipif(sys.version_info >= (3, 7), reason='Gevent does not yet work on Python 3.7+') class TestGeventScheduler(SchedulerImplementationTestBase): @pytest.fixture def scheduler(self): -- cgit v1.2.1