Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-29 00:39:14 -08:00
parent bc3d698539
commit faaeb3a472
74 changed files with 496 additions and 1985 deletions

View File

@ -151,7 +151,7 @@ def test_file_convert_stl():
# Make sure the bytes are not empty.
for key, value in fc.outputs.items():
assert len(value) > 0
assert len(value.get_decoded()) > 0
@pytest.mark.asyncio
@ -190,7 +190,7 @@ async def test_file_convert_stl_async():
# Make sure the bytes are not empty.
for key, value in fc.outputs.items():
assert len(value) > 0
assert len(value.get_decoded()) > 0
@pytest.mark.asyncio
@ -229,7 +229,7 @@ async def test_file_convert_obj_async():
# Make sure the bytes are not empty.
for key, value in fc.outputs.items():
assert len(value) > 0
assert len(value.get_decoded()) > 0
def test_file_mass():