mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 10:57:49 +00:00
14 lines
203 B
Makefile
14 lines
203 B
Makefile
|
|
.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
|