* bump

Signed-off-by: Jess Frazelle <github@jessfraz.com>

* I have generated the latest API!

---------

Signed-off-by: Jess Frazelle <github@jessfraz.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Jess Frazelle
2023-05-04 01:23:25 -07:00
committed by GitHub
parent 4bb01c8473
commit 77cd2c0956
5 changed files with 3 additions and 152 deletions

View File

@ -37,7 +37,6 @@ from kittycad.api.hidden import auth_email, auth_email_callback, logout
from kittycad.api.meta import (
get_ai_plugin_manifest,
get_metadata,
get_metrics,
get_openai_schema,
get_schema,
ping,
@ -239,38 +238,6 @@ async def test_get_metadata_async():
)
@pytest.mark.skip
def test_get_metrics():
# Create our client.
client = ClientFromEnv()
get_metrics.sync(
client=client,
)
# OR if you need more info (e.g. status_code)
get_metrics.sync_detailed(
client=client,
)
# OR run async
@pytest.mark.asyncio
@pytest.mark.skip
async def test_get_metrics_async():
# Create our client.
client = ClientFromEnv()
await get_metrics.asyncio(
client=client,
)
# OR run async with more info
await get_metrics.asyncio_detailed(
client=client,
)
@pytest.mark.skip
def test_create_image_to_3d():
# Create our client.