From 6118c69530569ec890419ddd33485c04bbac8cdd Mon Sep 17 00:00:00 2001 From: Omer Katz Date: Tue, 3 Feb 2015 10:11:11 +0200 Subject: [PATCH] Deactivated running benchmarks in travis for now. --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index 040adacdc..c8236ff25 100755 --- a/runtests.py +++ b/runtests.py @@ -9,7 +9,7 @@ import subprocess PYTEST_ARGS = { 'default': ['tests', '--tb=short', '--bench'], - 'fast': ['tests', '--tb=short', '-q', '--bench'], + 'fast': ['tests', '--tb=short', '-q'], } FLAKE8_ARGS = ['rest_framework', 'tests', '--ignore=E501']