Просмотр исходного кода

tests: Fix unit test suite on Python 2.7

rdb 1 месяц назад
Родитель
Сommit
8177021155
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      tests/event/test_futures.py

+ 3 - 0
tests/event/test_futures.py

@@ -16,6 +16,9 @@ def check_result(fut, expected):
     if fut.result() != expected:
         return False
 
+    if sys.version_info < (3, 5):
+        return False
+
     # Make sure that await also returns the values properly
     with pytest.raises(StopIteration) as e:
         next(fut.__await__())