Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Feb 1, 2024
1 parent 3a24e76 commit efb521e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Get required packages for Blender
run: |
sudo apt-get update -qq
sudo apt-get install -y blender wget python3 python3-pip zip libglu1 libfreetype6 libglib2.0-0 libsm6 libxrender1 libxext6
sudo apt-get install -y blender wget python3 python3-pip zip libglu1 libfreetype6

Check failure on line 41 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / yamllint

41:81 [line-length] line too long (91 > 80 characters)
- name: Get required pip packages
run: pip3 install -r requirements.txt
Expand Down
7 changes: 6 additions & 1 deletion tests/python/screencast_keys_test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ def operator_exists(idname):
op_as_string(idname)
return True
except:
return False
try:
from bpy.ops import _op_as_string
_op_as_string(idname)
return True
except:
return False


def menu_exists(idname):
Expand Down

0 comments on commit efb521e

Please sign in to comment.