Skip to content

Commit

Permalink
Upversion and test mitigation
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDuckCow committed Mar 26, 2023
1 parent e641d49 commit e107731
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MCprep_addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
bl_info = {
"name": "MCprep",
"category": "Object",
"version": (3, 4, 2, 1),
"version": (3, 4, 3),
"blender": (2, 80, 0),
"location": "3D window toolshelf > MCprep tab",
"description": "Minecraft workflow addon for rendering and animation",
Expand Down
7 changes: 4 additions & 3 deletions test_files/addon_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1785,6 +1785,8 @@ def collection_effect_spawner(self):

def img_sequence_effect_spawner(self):
"""Test the image sequence variant of effect spawning works."""
if bpy.app.version < (2, 81):
return "Disabled due to consistent crashing"
self._clear_scene()
scn_props = bpy.context.scene.mcprep_props
etype = "img_seq"
Expand Down Expand Up @@ -2252,10 +2254,9 @@ def qa_rigs(self):
issues.append([blend, resp])
checked += 1

return "Checked {} rigs, issues: {}".format(
checked, issues)
if issues:
return issues
return "Checked {} rigs, issues: {}".format(
checked, issues)

def convert_mtl_simple(self):
"""Ensures that conversion of the mtl with other color space works."""
Expand Down

0 comments on commit e107731

Please sign in to comment.