From 75211bdfd58b3209455c88ab00c96e9e7c7acecc Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Thu, 12 May 2016 14:29:50 -0700 Subject: Enable nose-timer and always show top 10 slow tests --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'test-requirements.txt') diff --git a/test-requirements.txt b/test-requirements.txt index 2ab53707..88a67a26 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,6 +2,7 @@ httpretty>=0.7.1 mock nose +nose-timer # Only really needed on older versions of python contextlib2 -- cgit v1.2.3 From 70ee3c4e6806996401d747e4f8b25855e85d86eb Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Tue, 24 May 2016 14:05:20 -0700 Subject: Make the usage of 'nose-timer' optional --- test-requirements.txt | 4 +++- tox.ini | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'test-requirements.txt') diff --git a/test-requirements.txt b/test-requirements.txt index 88a67a26..aa01fa88 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,7 +2,9 @@ httpretty>=0.7.1 mock nose -nose-timer + +# Only needed if u want to know the test times +# nose-timer # Only really needed on older versions of python contextlib2 diff --git a/tox.ini b/tox.ini index d051f2ac..dafaaf6d 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ envlist = py27,py3,flake8 recreate = True [testenv] -commands = python -m nose --with-timer --timer-top-n 10 {posargs:tests} +commands = python -m nose {posargs:tests} deps = -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt @@ -19,7 +19,7 @@ setenv = LC_ALL = en_US.utf-8 [testenv:py26] -commands = nosetests --with-timer --timer-top-n 10 {posargs:tests} +commands = nosetests {posargs:tests} deps = contextlib2 httpretty>=0.7.1 -- cgit v1.2.3