From c7481fde0273359cbe397601f5c1b93b83883439 Mon Sep 17 00:00:00 2001 From: rht Date: Tue, 11 Dec 2018 16:00:10 +0000 Subject: [PATCH] Travis: Disable performance tests They should be run only from time to time, e.g. between releases, or when the commit specifically states the perf modification of the relevant code. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 808949882..c8b774d29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,9 @@ install: - python setup.py install script: - - nosetests --with-coverage --cover-package=quantecon + - nosetests --with-coverage -a "!slow" --cover-package=quantecon after_success: - coveralls + # Enable this to occasionally test performance + # - nosetests -a "slow"