MCPcopy Create free account
hub / github.com/pydata/numexpr / suite

Function suite

numexpr3/tests/test_numexpr.py:761–785  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

759
760
761def suite():
762 import unittest
763 import platform as pl
764
765 theSuite = unittest.TestSuite()
766 niter = 1
767
768 from . import autotest_GENERATED
769 theSuite.addTest( unittest.makeSuite( autotest_GENERATED.autotest_numexpr ) )
770
771 for n in range(niter):
772 theSuite.addTest( unittest.makeSuite( test_numexpr ) )
773 if 'sparc' not in platform.machine():
774 theSuite.addTest( unittest.makeSuite( test_numexpr_max ) )
775
776 theSuite.addTest( unittest.makeSuite( test_evaluate) )
777 theSuite.addTest( unittest.makeSuite( test_reductions ) )
778 theSuite.addTest( unittest.makeSuite( test_strings ) )
779 theSuite.addTest( unittest.makeSuite( test_zerodim ) )
780
781 # multiprocessing module is not supported on Hurd/kFreeBSD
782 # if pl.system().lower() not in ('gnu', 'gnu/kfreebsd'):
783 # theSuite.addTest( unittest.makeSuite( test_multicore ) )
784
785 return theSuite
786
787
788if __name__ == '__main__':

Callers 2

testFunction · 0.85
test_numexpr.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…