()
| 759 | |
| 760 | |
| 761 | def 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 | |
| 788 | if __name__ == '__main__': |
no outgoing calls
no test coverage detected
searching dependent graphs…