mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
7 lines
214 B
Python
7 lines
214 B
Python
import unittest
|
|
|
|
suite = unittest.defaultTestLoader.discover('backtesting.test',
|
|
pattern='_test*.py')
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner().run(suite)
|