mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 12:03:50 +01:00
10 lines
222 B
Python
10 lines
222 B
Python
|
r"""
|
||
|
Test suite for modules `converter` + `VaspConverter`.
|
||
|
"""
|
||
|
import unittest
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
suite = unittest.TestLoader().discover('./')
|
||
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
||
|
|