mirror of https://github.com/MagicStack/uvloop.git
8 lines
157 B
Python
8 lines
157 B
Python
|
import unittest
|
||
|
|
||
|
|
||
|
def suite():
|
||
|
test_loader = unittest.TestLoader()
|
||
|
test_suite = test_loader.discover('.', pattern='test_*.py')
|
||
|
return test_suite
|