3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-01 17:06:04 +02:00
dft_tools/python/converters/vasp/test/_plotools/test_plotools.py
Oleg E. Peil d70dca3dd7 Fixed 'nelect_window()' in ProjectorGroup
Method 'nelect_window()' now correctly takes into account a subset
of bands selected by the energy window.
Also, the number of electrons is now output to a '*.grX' file.
2015-10-11 14:03:13 +02:00

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)