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
203 B
Makefile
Raw Normal View History

.PHONY: test
test:
pytest -o "testpaths=test"
.PHONY: coverage
coverage:
coverage run --source ifcopenshell -m pytest
coverage html
xdg-open htmlcov/index.html
.PHONY: clean
clean:
rm -rf htmlcov