diff --git a/requirements/tests.txt b/requirements/tests.txt index 20aff929..74fe7595 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -5,4 +5,3 @@ nose pylint tox unittest2 -yappi diff --git a/tests/__main__.py b/tests/__main__.py index 11757cbb..164f1e66 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -1,10 +1,5 @@ from __future__ import unicode_literals import nose -import yappi -try: - yappi.start() - nose.main() -finally: - yappi.print_stats() +nose.main()