summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2019-03-18 10:21:00 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2019-03-18 11:10:31 +0200
commit3d8cd86f7898ea14acec5c889372220d170314d1 (patch)
treeb3e4e2dcdd2166b827d30ec034f9c3665b9c1660
parentab991eb29eedb0943356c4d7ddca8320e7845965 (diff)
downloadapscheduler-3d8cd86f7898ea14acec5c889372220d170314d1.tar.gz
Removed skipping of Gevent tests on Python 3.7
Recent versions of Gevent now work properly with Python 3.7.
-rw-r--r--tests/test_schedulers.py2
1 files changed, 0 insertions, 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):