(self)
| 198 | """Test automatic stale lock recovery during acquisition""" |
| 199 | |
| 200 | def setUp(self) -> None: |
| 201 | self.temp_dir = tempfile.mkdtemp() |
| 202 | self.db_path = Path(self.temp_dir) / "test_locks.db" |
| 203 | self.db = LockDatabase(self.db_path) |
| 204 | os.environ["FASTLED_LOCK_DB_PATH"] = str(self.db_path) |
| 205 | |
| 206 | def tearDown(self) -> None: |
| 207 | import shutil |
nothing calls this directly
no test coverage detected