Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-12-21 08:14:08 -08:00
parent 54d2ea373f
commit 6e170684d5
55 changed files with 802 additions and 797 deletions

View File

@ -82,7 +82,6 @@ from kittycad.api.users import (
get_session_for_user,
get_user,
get_user_extended,
get_user_front_hash_self,
get_user_onboarding_self,
get_user_self,
get_user_self_extended,
@ -2822,38 +2821,6 @@ async def test_get_user_self_extended_async():
)
@pytest.mark.skip
def test_get_user_front_hash_self():
# Create our client.
client = ClientFromEnv()
get_user_front_hash_self.sync(
client=client,
)
# OR if you need more info (e.g. status_code)
get_user_front_hash_self.sync_detailed(
client=client,
)
# OR run async
@pytest.mark.asyncio
@pytest.mark.skip
async def test_get_user_front_hash_self_async():
# Create our client.
client = ClientFromEnv()
await get_user_front_hash_self.asyncio(
client=client,
)
# OR run async with more info
await get_user_front_hash_self.asyncio_detailed(
client=client,
)
@pytest.mark.skip
def test_get_user_onboarding_self():
# Create our client.