Newer
Older
PKGNAME=km3io
default: build
all: install
install:
pip install .
install-dev:
py.test --junitxml=./reports/junit.xml -o junit_suite_name=$(PKGNAME) tests
py.test --cov ./km3io --cov-report term-missing --cov-report xml:reports/coverage.xml --cov-report html:reports/coverage tests
flake8:
py.test --flake8
pep8: flake8
docstyle:
py.test --docstyle
lint:
py.test --pylint
dependencies:
pip install -Ur requirements.txt
.PHONY: black
black:
black km3io
black examples
black tests
black doc/conf.py
black setup.py
.PHONY: black-check
black-check:
black --check km3io
black --check examples
black --check tests
black --check doc/conf.py
black --check setup.py
.PHONY: all clean install install-dev test test-nocov flake8 pep8 dependencies docstyle black black-check