Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
numba / tests / npyufunc / __init__.py
Size: Mime:
from numba import unittest_support as unittest

from os.path import dirname
from unittest.suite import TestSuite

from numba.testing import load_testsuite

def load_tests(loader, tests, pattern):
    suite = TestSuite()
    suite.addTests(load_testsuite(loader, dirname(__file__)))
    return suite