mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 17:31:45 +00:00
19 lines
323 B
Makefile
19 lines
323 B
Makefile
.PHONY: test
|
|
test:
|
|
pytest -p no:pytest-blender test
|
|
|
|
.PHONY: qa
|
|
qa:
|
|
black .
|
|
pylint ./* --output-format=colorized --disable all --enable E
|
|
|
|
.PHONY: coverage
|
|
coverage:
|
|
coverage run --source ifcopenshell -m pytest -p no:pytest-blender test
|
|
coverage html
|
|
xdg-open htmlcov/index.html
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf htmlcov
|