Files
IfcOpenShell/src/ifcopenshell-python/Makefile
T

14 lines
209 B
Makefile
Raw Normal View History

.PHONY: test
test:
pytest -p no:pytest-blender test
.PHONY: coverage
coverage:
coverage run --source ifcopenshell -m pytest
coverage html
xdg-open htmlcov/index.html
.PHONY: clean
clean:
rm -rf htmlcov