mirror of
https://github.com/triqs/dft_tools
synced 2024-11-08 15:13:47 +01:00
5c3b3d0b8d
Tests for 'select_bands()' and class 'ProjectorShell' have been added. The function and class methods have been fixed accordingly to pass the tests.
11 lines
269 B
Python
11 lines
269 B
Python
r"""
|
|
Test suite for module `plotools`.
|
|
"""
|
|
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)
|
|
|