mirror of
https://github.com/triqs/dft_tools
synced 2024-11-06 22:23:52 +01:00
10 lines
204 B
Python
10 lines
204 B
Python
r"""
|
|
Test suite for module `inpconf.py`.
|
|
"""
|
|
import unittest
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestLoader().discover('./')
|
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
|