3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-28 16:12:36 +02:00
dft_tools/python/converters/plovasp/test/test_all.py
2015-11-27 10:48:15 +01:00

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)