mirror of
https://github.com/triqs/dft_tools
synced 2024-11-06 22:23:52 +01:00
11 lines
280 B
Python
11 lines
280 B
Python
r"""
|
|
Searches and runs all available test suites.
|
|
"""
|
|
import unittest
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestLoader().discover('./')
|
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
# unittest.TextTestRunner(verbosity=2, buffer=False).run(suite)
|
|
|