()
| 24 | |
| 25 | |
| 26 | def test_sync_to_keypair(): |
| 27 | client = DstackClient() |
| 28 | result = client.get_key("test") |
| 29 | assert isinstance(result, GetKeyResponse) |
| 30 | keypair = to_keypair(result) |
| 31 | assert isinstance(keypair, Keypair) |
| 32 | |
| 33 | |
| 34 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected