Files
IfcOpenShell/src/ifcopenshell-python/Makefile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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