(self)
| 19 | @pytest.mark.asyncio |
| 20 | @pytest.mark.test_id("inference_021") |
| 21 | async def test_cache_checksums(self): |
| 22 | result = await cache_checksums() |
| 23 | assert result.status_code == 200, f"test_cache failed: result={result}" |
| 24 | assert result.json()["status"] == "success" |
| 25 | assert set(self.cache_checksums_keys_list).issubset(result.json()["data"].keys()) |
| 26 | |
| 27 | @pytest.mark.asyncio |
| 28 | @pytest.mark.test_id("inference_022") |
nothing calls this directly
no test coverage detected