3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-01 19:05:28 +02:00
dft_tools/test/plovasp/proj_group/test_all.py
Oleg E. Peil 20be2e5826 Modified the way group tests compare output
Instead of comparing text output files the tests are now done
on h5-files. The latter are compared with a finite precision
eliminating thus a problem of platform-dependence of the
results.
2017-02-07 10:33:22 +01:00

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_one*')
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
# unittest.TextTestRunner(verbosity=2, buffer=False).run(suite)