You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.5 KiB
Python

#
# models - Statistical Models
#
from __future__ import with_statement
__docformat__ = 'restructuredtext'
#from version import __version__
#from info import __doc__
#from regression import *
#from genmod.glm import *
#from robust.rlm import *
#from discrete.discretemod import *
#import tsa
#from tools.tools import add_constant, chain_dot
#import base.model
#import tools.tools
#import datasets
#import glm.families
#import stats.stattools
#import iolib
from numpy import errstate
#__all__ = filter(lambda s:not s.startswith('_'),dir())
from numpy.testing import Tester
class NoseWrapper(Tester):
'''
This is simply a monkey patch for numpy.testing.Tester.
It allows extra_argv to be changed from its default None to ['--exe'] so
that the tests can be run the same across platforms. It also takes kwargs
that are passed to numpy.errstate to suppress floating point warnings.
'''
def test(self, label='fast', verbose=1, extra_argv=['--exe'], doctests=False,
coverage=False, **kwargs):
''' Run tests for module using nose
%(test_header)s
doctests : boolean
If True, run doctests in module, default False
coverage : boolean
If True, report coverage of NumPy code, default False
(Requires the coverage module:
http://nedbatchelder.com/code/modules/coverage.html)
kwargs
Passed to numpy.errstate. See its documentation for details.
'''
# cap verbosity at 3 because nose becomes *very* verbose beyond that
verbose = min(verbose, 3)
from numpy.testing import utils
utils.verbose = verbose
if doctests:
print "Running unit tests and doctests for %s" % self.package_name
else:
print "Running unit tests for %s" % self.package_name
self._show_system_info()
# reset doctest state on every run
import doctest
doctest.master = None
argv, plugins = self.prepare_test_args(label, verbose, extra_argv,
doctests, coverage)
from numpy.testing.noseclasses import NumpyTestProgram
from warnings import simplefilter #, catch_warnings
with errstate(**kwargs):
## with catch_warnings():
simplefilter('ignore', category=DeprecationWarning)
t = NumpyTestProgram(argv=argv, exit=False, plugins=plugins)
return t.result
test = NoseWrapper().test