(self)
| 213 | # Let the updater run for 10 cycles, and write an update every cycle |
| 214 | @pytest.mark.skip("need to make this faster") |
| 215 | def test_update_loop(self): |
| 216 | self._start_updater() |
| 217 | |
| 218 | # run for a cycle with no update |
| 219 | self._wait_for_update(clear_param=True) |
| 220 | for _ in range(10): |
| 221 | time.sleep(0.5) |
| 222 | self._make_commit() |
| 223 | self._wait_for_update(timeout=90, clear_param=True) |
| 224 | self._check_update_state(True) |
| 225 | |
| 226 | # Test overlay re-creation after tracking a new file in basedir's git |
| 227 | def test_overlay_reinit(self): |
nothing calls this directly
no test coverage detected