Index: tests/test_hd_dg_fans.py =================================================================== diff -u -r5b95fe318aeec36597d8fbbdbba1d54b1d48f380 -r5a634c567871a6855667341464bac9e057cd2b93 --- tests/test_hd_dg_fans.py (.../test_hd_dg_fans.py) (revision 5b95fe318aeec36597d8fbbdbba1d54b1d48f380) +++ tests/test_hd_dg_fans.py (.../test_hd_dg_fans.py) (revision 5a634c567871a6855667341464bac9e057cd2b93) @@ -1,6 +1,7 @@ from dialin import HD from dialin.hd.temperatures import HDTemperaturesNames +from time import sleep def test_fans_info(): @@ -23,5 +24,7 @@ if hd.cmd_log_in_to_hd() == 0: exit(1) - fans = test_fans_info() - print(fans) \ No newline at end of file + while True: + fans = test_fans_info() + print(fans) + sleep(1) \ No newline at end of file