mirror of
https://github.com/triqs/dft_tools
synced 2024-12-28 07:13:41 +01:00
96104cf10d
The test input files have been adapted to the new format of LOCPROJ.
12 lines
340 B
Python
12 lines
340 B
Python
r"""
|
|
Test suite for module `plotools`.
|
|
"""
|
|
import unittest
|
|
|
|
if __name__ == '__main__':
|
|
# suite = unittest.TestLoader().discover('./')
|
|
suite = unittest.TestLoader().discover('./', pattern='test_two*')
|
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
# unittest.TextTestRunner(verbosity=2, buffer=False).run(suite)
|
|
|