Commit abf28316 authored by Denis Bilenko's avatar Denis Bilenko

disable deprecation warnings in test of deprecated features

parent c211623f
...@@ -23,6 +23,9 @@ from greentest import TestCase, main ...@@ -23,6 +23,9 @@ from greentest import TestCase, main
import gevent import gevent
from gevent import coros from gevent import coros
import warnings
warnings.simplefilter('ignore', DeprecationWarning)
class TestEvent(TestCase): class TestEvent(TestCase):
mode = 'static' mode = 'static'
......
...@@ -3,6 +3,8 @@ from greentest import main ...@@ -3,6 +3,8 @@ from greentest import main
import gevent import gevent
from gevent import coros from gevent import coros
import warnings
warnings.simplefilter('ignore', DeprecationWarning)
class TestQueue(TestCase): class TestQueue(TestCase):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment