mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
426 lines
17 KiB
Makefile
426 lines
17 KiB
Makefile
# Bonsai - OpenBIM Blender Add-on
|
|
# Copyright (C) 2020-2023 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of Bonsai.
|
|
#
|
|
# Bonsai is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Bonsai is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Bonsai. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
PYTHON:=python3.11
|
|
PIP:=pip3.11
|
|
PATCH:=patch
|
|
SED:=sed -i
|
|
VENV_ACTIVATE:=bin/activate
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
HOSTOS:=win
|
|
PYTHON:=python
|
|
VENV_ACTIVATE:=Scripts/activate
|
|
else
|
|
UNAME_S:=$(shell uname -s)
|
|
ifeq ($(UNAME_S),Linux)
|
|
HOSTOS:=linux
|
|
endif
|
|
ifeq ($(UNAME_S),Darwin)
|
|
HOSTOS:=macos
|
|
PYTHON:=python3
|
|
PATCH:=patch -d
|
|
SED:=sed -i '' -e
|
|
endif
|
|
endif
|
|
|
|
IS_STABLE:=FALSE
|
|
VERSION:=$(shell cat ../../VERSION)
|
|
VERSION_MAJOR:=$(shell cat '../../VERSION' | cut -d '.' -f 1)
|
|
VERSION_MINOR:=$(shell cat '../../VERSION' | cut -d '.' -f 2)
|
|
VERSION_PATCH:=$(shell cat '../../VERSION' | cut -d '.' -f 3)
|
|
VERSION_DATE:=$(shell date '+%y%m%d')
|
|
LAST_COMMIT_HASH:=$(shell git rev-parse HEAD)
|
|
PYVERSION:=py310
|
|
PYPI_IMP:=cp
|
|
|
|
ifeq ($(PYVERSION), py311)
|
|
PYLIBDIR:=python3.11
|
|
PYNUMBER:=311
|
|
PYPI_VERSION:=3.11
|
|
endif
|
|
ifeq ($(PYVERSION), py312)
|
|
PYLIBDIR:=python3.12
|
|
PYNUMBER:=312
|
|
PYPI_VERSION:=3.12
|
|
endif
|
|
|
|
ifeq ($(PLATFORM), linux)
|
|
PYPI_PLATFORM:=--platform manylinux_2_17_x86_64
|
|
BLENDER_PLATFORM:=linux-x64
|
|
endif
|
|
|
|
ifeq ($(PLATFORM), macos)
|
|
ifeq ($(PYVERSION), py311)
|
|
PYPI_PLATFORM:=--platform macosx_10_10_x86_64
|
|
else
|
|
PYPI_PLATFORM:=--platform macosx_10_13_x86_64
|
|
endif
|
|
BLENDER_PLATFORM:=macos-x64
|
|
endif
|
|
|
|
ifeq ($(PLATFORM), macosm1)
|
|
PYPI_PLATFORM:=--platform macosx_11_0_arm64
|
|
BLENDER_PLATFORM:=macos-arm64
|
|
endif
|
|
|
|
ifeq ($(PLATFORM), win)
|
|
PYPI_PLATFORM:=--platform win_amd64
|
|
BLENDER_PLATFORM:=windows-x64
|
|
endif
|
|
|
|
# Current build commit hash.
|
|
OLD:=fc9bcb0
|
|
.PHONY: bump
|
|
bump:
|
|
ifndef NEW
|
|
$(error ERROR: 'NEW' variable is not set (should be set with new commmit hash). Example use for 'bump' command: 'make bump NEW=0123456'.)
|
|
endif
|
|
cd . && $(SED) -b "s/$(OLD)/$(NEW)/" Makefile
|
|
cd ../ifcopenshell-python/ && $(SED) -b "s/$(OLD)/$(NEW)/" Makefile
|
|
|
|
.PHONY: dist
|
|
dist:
|
|
ifndef PLATFORM
|
|
$(error PLATFORM is not set)
|
|
endif
|
|
rm -rf build
|
|
mkdir -p build
|
|
mkdir -p dist
|
|
cp -r bonsai build/
|
|
|
|
# To scope any build-time dependencies
|
|
cd build && $(PYTHON) -m venv env && . env/$(VENV_ACTIVATE) && $(PIP) install build
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) install wheel
|
|
|
|
mkdir -p build/wheels
|
|
# Provides IfcOpenShell Python functionality
|
|
cd ../ifcopenshell-python && make dist PLATFORM=$(PLATFORM)64 PYVERSION=$(PYVERSION) && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../bcf && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifcclash && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifctester && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifcfm && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../bsdd && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifcdiff && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifccsv && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifcpatch && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifc4d && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifc5d && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd ../ifccityjson && make dist && mv dist/*.whl ../bonsai/build/wheels/
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download GitPython --dest=./wheels
|
|
# Provides audio playback for costing
|
|
# This is a REALLY IMPORTANT feature
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) wheel git+https://github.com/Andrej730/aud.git --wheel-dir=./wheels
|
|
# IfcOpenShell dependency - support for new typing features
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download typing_extensions --dest=./wheels
|
|
# Required by IfcCSV
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pandas $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Pandas ships with very heavy tests
|
|
# cd build/site-packages/pandas && rm -rf tests
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download openpyxl --dest=./wheels
|
|
# odfpy doesn't come with its own wheel, so whee'l (get it?) create it ourselves!
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) wheel odfpy --wheel-dir=./wheels
|
|
# Required by IFCCityJSON
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download cjio --dest=./wheels
|
|
# Required in general for sorting all sorts of stuff in a nice way
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download natsort --dest=./wheels
|
|
# Provides express rule validation for ifcopenshell.validate
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pytest --dest=./wheels
|
|
# Provides Brickschema functionality
|
|
# Is not platform specific but has platform specific dependencies.
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download "brickschema[persistence]==0.7.6a2" $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Required for SVG to DXF conversion
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download ezdxf $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Required by bcf
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download xsdata --dest=./wheels
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download xmlschema --dest=./wheels
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download elementpath --dest=./wheels
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download six --dest=./wheels
|
|
# Required by drawing module
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download lxml $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Required by qto and drawing module
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download shapely $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Required by the BIM type manager thumbnail generator
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pillow $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Provides mustache templating in construction docs and web UI data
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pystache --dest=./wheels
|
|
# Provides SVG export in construction documentation
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download svgwrite --dest=./wheels
|
|
# Provides fuzzy date parsing for construction sequencing
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download python-dateutil --dest=./wheels
|
|
# Provides duration parsing for construction sequencing
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download isodate --dest=./wheels
|
|
# Provides networkx graph analysis for project dependency calculations
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download networkx --dest=./wheels
|
|
# Required by IFCDiff
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download deepdiff --dest=./wheels
|
|
# Required by IFCCSV and ifcopenshell.util.selector
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download lark --dest=./wheels
|
|
# Required by IFC4D
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download PyP6Xer --dest=./wheels
|
|
# Required by web module
|
|
# Is not platform specific but has platform specific dependencies.
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download python-socketio[asyncio_client] $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download aiohttp $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# Required by light module
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pytz --dest=./wheels
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download tzfpy $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
# pyradiance is using different platform versions than defaults in our makefile.
|
|
ifeq ($(PLATFORM), linux)
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pyradiance --platform manylinux_2_35_x86_64 --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
else ifeq ($(PLATFORM), macos)
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pyradiance --platform macosx_10_13_x86_64 --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
else
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PIP) download pyradiance $(PYPI_PLATFORM) --python-version $(PYPI_VERSION) --implementation $(PYPI_IMP) --only-binary=:all: --dest=./wheels
|
|
endif
|
|
|
|
# Provides jsgantt-improved supports for web-based construction sequencing gantt charts
|
|
cd build/bonsai/bim/data/gantt/ && wget https://raw.githubusercontent.com/jsGanttImproved/jsgantt-improved/master/dist/jsgantt.js
|
|
cd build/bonsai/bim/data/gantt/ && wget https://raw.githubusercontent.com/jsGanttImproved/jsgantt-improved/master/dist/jsgantt.css
|
|
|
|
# Provides IFCJSON functionality
|
|
# TODO: replace with main repo if https://github.com/IFCJSON-Team/IFC2JSON_python/pull/3 is merged.
|
|
cd build && wget -O ifc2json.zip https://github.com/Moult/IFC2JSON_python/archive/refs/heads/feature-ios-v0.8.0.zip
|
|
cd build && unzip ifc2json.zip && rm ifc2json.zip
|
|
# IFCJSON doesn't have pyproject.toml, so we use python command.
|
|
cd build && . env/$(VENV_ACTIVATE) && cd IFC2JSON_python-*/file_converters && \
|
|
$(PYTHON) -c "from setuptools import setup; \
|
|
setup( \
|
|
name='ifcjson', \
|
|
version='0.0.1', \
|
|
author='Jan Brouwer', \
|
|
author_email='jan@brewsky.nl', \
|
|
packages=['ifcjson'], \
|
|
)" bdist_wheel
|
|
cp -r build/IFC2JSON_python-*/file_converters/dist/*.whl build/wheels/
|
|
|
|
# Brickschema requires pkg_resources which is provided by Blender.
|
|
# Provides Brickschema functionality
|
|
# For now lets bundle the latest nightly schema
|
|
cd build/bonsai/bim/schema && wget https://github.com/BrickSchema/Brick/releases/download/nightly/Brick.ttl
|
|
|
|
# Required for hipped roof generation
|
|
cd build && wget https://github.com/prochitecture/bpypolyskel/archive/refs/heads/master.zip
|
|
cd build && unzip master.zip && rm master.zip
|
|
cd build && . env/$(VENV_ACTIVATE) && cd bpypolyskel-master && \
|
|
$(PYTHON) -c "from setuptools import setup; \
|
|
setup( \
|
|
name='bpypolyskel', \
|
|
version='0.0.0', \
|
|
packages=['bpypolyskel'], \
|
|
)" bdist_wheel
|
|
cp -r build/bpypolyskel-master/dist/*.whl build/wheels/
|
|
|
|
# folder for executable files
|
|
mkdir -p build/bonsai/libs/bin
|
|
|
|
# required for three-way git merging
|
|
ifeq ($(PLATFORM), win)
|
|
cd build/bonsai/libs/bin && wget https://github.com/brunopostle/ifcmerge/releases/download/2024-06-24/ifcmerge.zip
|
|
cd build/bonsai/libs/bin && unzip ifcmerge.zip && rm ifcmerge.zip
|
|
else
|
|
cd build/bonsai/libs/bin && wget https://raw.githubusercontent.com/brunopostle/ifcmerge/main/ifcmerge && chmod +x ifcmerge
|
|
endif
|
|
|
|
# Generate translations module for Bonsai build
|
|
git clone https://github.com/IfcOpenShell/bonsai-translations.git build/working
|
|
$(PYTHON) scripts/bonsai_translations.py -i "build/working" -o "build/bonsai"
|
|
rm -rf build/working
|
|
|
|
# Remove dependencies also bundled with Blender
|
|
rm -rf build/wheels/numpy*
|
|
|
|
cp pyproject.toml build/
|
|
ifeq ($(IS_STABLE), TRUE)
|
|
$(SED) "s/0.0.0/$(VERSION)/" build/bonsai/blender_manifest.toml
|
|
$(SED) 's/version = "0.0.0"/version = "$(VERSION)"/' build/pyproject.toml
|
|
else
|
|
$(SED) "s/0.0.0/$(VERSION)-alpha$(VERSION_DATE)/" build/bonsai/blender_manifest.toml
|
|
$(SED) "s/8888888/$(LAST_COMMIT_HASH)/" build/bonsai/__init__.py
|
|
$(SED) 's/version = "0.0.0"/version = "$(VERSION)-alpha$(VERSION_DATE)"/' build/pyproject.toml
|
|
endif
|
|
|
|
$(SED) "s/os-arch/$(BLENDER_PLATFORM)/" build/bonsai/blender_manifest.toml
|
|
|
|
# Provides bonsai Add-on functionality
|
|
ifeq ($(IS_STABLE), TRUE)
|
|
$(SED) 's/version = "0.0.0"/version = "$(VERSION)"/' build/pyproject.toml
|
|
else
|
|
$(SED) 's/version = "0.0.0"/version = "$(VERSION)a$(VERSION_DATE)"/' build/pyproject.toml
|
|
endif
|
|
cd build && . env/$(VENV_ACTIVATE) && $(PYTHON) -m build
|
|
cp build/dist/*.whl build/wheels/
|
|
|
|
# Safeguard for non-wheel dependencies slipping in.
|
|
wheels=$$(find build/wheels/* ! -name "*.whl"); \
|
|
if [ -n "$$wheels" ]; then \
|
|
echo "Found non-wheel dependencies:"; \
|
|
echo "$$wheels"; \
|
|
echo "Error: non-wheel dependencies are not supported by Blender!"; \
|
|
exit 1; \
|
|
fi
|
|
mv build/wheels/*.whl build/bonsai/wheels/
|
|
|
|
# Ugly patch to accomodate MacOS universal builds not being recognized by Blender.
|
|
# Blender doesn't look into the wheel contents, it just checks the name.
|
|
# So this hack works without working out some way to repack those wheels.
|
|
# See: https://projects.blender.org/blender/blender/issues/125091
|
|
|
|
ifeq ($(PLATFORM), macosm1)
|
|
# Has universal and x86_64 builds.
|
|
prev_whl_name=$$(find build/bonsai/wheels/lxml-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_arm64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
prev_whl_name=$$(find build/bonsai/wheels/tzfpy-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed -E "s/macosx_10_([0-9]+)_x86_64\.macosx_11_0_arm64\.macosx_10_\1_universal2/macosx_10_\1_arm64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
# Has only universal build.
|
|
prev_whl_name=$$(find build/bonsai/wheels/greenlet-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_arm64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
# has universal and x86_64 builds.
|
|
prev_whl_name=$$(find build/bonsai/wheels/fonttools-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/arm64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
# Has only universal build.
|
|
prev_whl_name=$$(find build/bonsai/wheels/charset_normalizer-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_arm64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
endif
|
|
ifeq ($(PLATFORM), macos)
|
|
# Has universal and arm64 builds.
|
|
prev_whl_name=$$(find build/bonsai/wheels/MarkupSafe-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_x86_64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
prev_whl_name=$$(find build/bonsai/wheels/tzfpy-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed -E "s/macosx_10_([0-9]+)_x86_64\.macosx_11_0_arm64\.macosx_10_\1_universal2/macosx_10_\1_x86_64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
prev_whl_name=$$(find build/bonsai/wheels/greenlet-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_x86_64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
|
|
prev_whl_name=$$(find build/bonsai/wheels/charset_normalizer-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/_universal2/_x86_64/"); \
|
|
mv "$$prev_whl_name" "$$whl_name";
|
|
endif
|
|
|
|
# Safeguard for unhandled universal files.
|
|
wheels=$$(find build/bonsai/wheels/*universal2*.whl); \
|
|
if [ -n "$$wheels" ]; then \
|
|
echo "Found universal2 wheel files:"; \
|
|
echo "$$wheels"; \
|
|
echo "Error: universal2 wheel files are not supported by Blender!"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
# Temporary workaround for Blender not handling non-3.11 wheels #5743.
|
|
# Use '-n' as on macos x86-64 doesn't have a binary wheel and it autoincludes 'cp311'.
|
|
prev_whl_name=$$(find build/bonsai/wheels/tzfpy-*.whl); \
|
|
whl_name=$$(echo $$prev_whl_name | sed "s/-cp39-/-cp$(PYNUMBER)-/"); \
|
|
mv --update=none "$$prev_whl_name" "$$whl_name";
|
|
|
|
ifneq ($(PLATFORM), linux)
|
|
# Safeguard: in case one of `pip download` will break,
|
|
# it will produce a linux wheel for non-linux build (our github action machine is using linux).
|
|
wheels=$$(find build/bonsai/wheels/*manylinux_*.whl); \
|
|
if [ -n "$$wheels" ]; then \
|
|
echo "Found linux wheel files in non-linux build:"; \
|
|
echo "$$wheels"; \
|
|
echo "Error: linux wheels are incompatible with build $(PLATFORM)!"; \
|
|
exit 1; \
|
|
fi
|
|
endif
|
|
|
|
$(PYTHON) scripts/get_wheels.py build/bonsai/wheels build/bonsai/blender_manifest.toml
|
|
rm -rf build/bonsai/bim/
|
|
rm -rf build/bonsai/core/
|
|
rm -rf build/bonsai/tool/
|
|
rm -rf build/bonsai/libs/
|
|
|
|
ifeq ($(IS_STABLE), TRUE)
|
|
cd build && zip -r bonsai_$(PYVERSION)-$(VERSION)-$(BLENDER_PLATFORM).zip ./bonsai
|
|
else
|
|
cd build && zip -r bonsai_$(PYVERSION)-$(VERSION)-alpha$(VERSION_DATE)-$(BLENDER_PLATFORM).zip ./bonsai
|
|
endif
|
|
|
|
mv build/bonsai*.zip dist/
|
|
|
|
rm -rf build
|
|
|
|
.PHONY: test
|
|
test:
|
|
@echo "Running all tests..."
|
|
@ERROR=0; \
|
|
make test-core || ERROR=1; \
|
|
make test-tool || ERROR=1; \
|
|
make test-bim || ERROR=1; \
|
|
if [ $$ERROR -ne 0 ]; then \
|
|
echo "One or more tests failed"; \
|
|
exit 1; \
|
|
fi
|
|
|
|
.PHONY: test-core
|
|
test-core:
|
|
pytest -p no:pytest-blender test/core
|
|
|
|
.PHONY: test-bim
|
|
test-bim:
|
|
ifndef MODULE
|
|
pytest test/bim
|
|
else
|
|
pytest test/bim -m "$(MODULE)" ./ --maxfail=1
|
|
endif
|
|
|
|
.PHONY: test-tool
|
|
test-tool:
|
|
ifndef MODULE
|
|
pytest test/tool
|
|
else
|
|
pytest test/tool/test_$(MODULE).py
|
|
endif
|
|
|
|
.PHONY: qa
|
|
qa:
|
|
black .
|
|
pylint ./* --output-format=colorized --disable all --enable E --disable import-error
|
|
|
|
.PHONY: coverage
|
|
coverage:
|
|
coverage run --source bonsai.core -m pytest -p no:pytest-blender test/core
|
|
coverage html
|
|
xdg-open htmlcov/index.html
|
|
|
|
.PHONY: license
|
|
license:
|
|
copyright-header --license GPL3 --copyright-holder "Dion Moult <dion@thinkmoult.com>" --copyright-year "2022" --copyright-software "Bonsai" --copyright-software-description "OpenBIM Blender Add-on" -a ./ -o ./
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf dist
|
|
rm -rf htmlcov
|
|
|
|
.PHONY: dev
|
|
dev:
|
|
blender -p setup_pytest.py
|