Coverage for tests/test_print_h5.py: 100%
7 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-14 15:55 +0200
1import gamdpy as gp
3def test_print_h5():
4 sim = gp.get_default_sim()
5 for _ in sim.run_timeblocks():
6 pass
7 gp.tools.print_h5_structure(sim.output)
8 gp.tools.print_h5_attributes(sim.output)
10if __name__ == '__main__': # pragma: no cover
11 test_print_h5()