mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
12 lines
268 B
Python
12 lines
268 B
Python
|
|
||
|
r"""
|
||
|
Test suite for module `vaspio`.
|
||
|
"""
|
||
|
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)
|
||
|
|