update tests

This commit is contained in:
Swann
2019-02-06 18:12:50 +01:00
parent fa9c594cce
commit b933bcdf0e
10 changed files with 179 additions and 112 deletions

22
SerializePropertyGroup.py Normal file
View File

@ -0,0 +1,22 @@
import sys
import os
thirdPartyDir = "C:\\Users\\slumber\\repos\\phd\src\\2019_rcf\\libs"
if thirdPartyDir not in sys.path:
print('Adding local modules dir to the path')
sys.path.insert(0, thirdPartyDir)
import umsgpack
import bpy
import esper
from rna_xml import rna2xml
try:
umsgpack.packb((getattr(bpy.data,'objects')))
except:
pass