Skip to content

Commit

Permalink
Include USDZ in tool tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Sep 20, 2024
1 parent 8d95d33 commit b682b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion glue_ar/qt/tests/test_tool_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_toolbar(self):
assert len([subtool for subtool in tool.subtools if isinstance(subtool, QtARExportTool)]) == 1

@pytest.mark.parametrize("extension,compression",
product(("glB", "glTF", "USDA", "USDC"), ("None", "Draco", "Meshoptimizer")))
product(("glB", "glTF", "USDA", "USDC", "USDZ"), ("None", "Draco", "Meshoptimizer")))
def test_tool_export_call(self, extension, compression):
auto_accept = dialog_auto_accept_with_options(filetype=extension, compression=compression)
with patch("qtpy.compat.getsavefilename") as fd, \
Expand Down
2 changes: 1 addition & 1 deletion glue_ar/qt/tests/test_tool_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_toolbar(self):
assert len([subtool for subtool in tool.subtools if isinstance(subtool, QtARExportTool)]) == 1

@pytest.mark.parametrize("extension,compression",
product(("glB", "glTF", "USDA", "USDC"), ("None", "Draco", "Meshoptimizer")))
product(("glB", "glTF", "USDA", "USDC", "USDZ"), ("None", "Draco", "Meshoptimizer")))
def test_tool_export_call(self, extension, compression):
auto_accept = dialog_auto_accept_with_options(filetype=extension, compression=compression)
with patch("qtpy.compat.getsavefilename") as fd, \
Expand Down

0 comments on commit b682b78

Please sign in to comment.