mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 06:00:51 +00:00
Rename misleading "ifcblenderexport" directory to "blenderbim"
This commit is contained in:
Executable
+16
@@ -0,0 +1,16 @@
|
||||
"""
|
||||
Requires pytest installed under blender
|
||||
|
||||
Usage: `blender -b -P runpytest.py -- ARGS`
|
||||
"""
|
||||
|
||||
import sys
|
||||
import pytest
|
||||
|
||||
argv = [__file__]
|
||||
|
||||
if '--' in sys.argv:
|
||||
i = sys.argv.index('--')
|
||||
argv += sys.argv[i+1:]
|
||||
|
||||
pytest.main(argv)
|
||||
Reference in New Issue
Block a user