On this page
numpy.testing.dec.setastest
- numpy.testing.dec.setastest(tf=True)
- 
    Signals to nose that this function is or is not a test. - Parameters
- 
      - tfbool
- 
        If True, specifies that the decorated callable is a test. If False, specifies that the decorated callable is not a test. Default is True. 
 
 NotesThis decorator can’t use the nose namespace, because it can be called from a non-test module. See also istestandnottestinnose.tools.Examplessetastestcan be used in the following way:from numpy.testing import dec @dec.setastest(False) def func_with_test_in_name(arg1, arg2): pass
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.testing.dec.setastest.html