From f98e52ffe8cd5678b178eb69fa771b23af55125f Mon Sep 17 00:00:00 2001 From: Nicolo Fusi Date: Mon, 11 Mar 2013 12:40:14 +0000 Subject: [PATCH] now running nosetest doesn't run unittests twice --- GPy/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GPy/__init__.py b/GPy/__init__.py index 6c43e471..fa69dac3 100644 --- a/GPy/__init__.py +++ b/GPy/__init__.py @@ -11,6 +11,8 @@ from core import priors import likelihoods import testing from numpy.testing import Tester +from nose.tools import nottest +@nottest def tests(): Tester(testing).test(verbose=10)