(self)
| 11 | @pytest.mark.asyncio |
| 12 | @pytest.mark.test_id("inference_020") |
| 13 | async def test_cache(self): |
| 14 | result = await caches() |
| 15 | assert result.status_code == 200, f"test_cache failed: result={result}" |
| 16 | assert result.json()["status"] == "success" |
| 17 | assert set(self.caches_keys_list).issubset(result.json()["data"].keys()) |
| 18 | |
| 19 | @pytest.mark.asyncio |
| 20 | @pytest.mark.test_id("inference_021") |