From a5993628631a122624765fcdb263dd5138c864f6 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 15 Dec 2012 23:46:52 +0100 Subject: [PATCH] Remove unused yappi profiler --- requirements/tests.txt | 1 - tests/__main__.py | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) 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()