.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
