Newer
Older
PKGNAME=km3io
default: build
all: install
install:
pip install .
install-dev:
python -m ipykernel install --user --name=km3io
py.test --junitxml=./reports/junit.xml -o junit_suite_name=$(PKGNAME) tests
py.test --cov src/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
black examples
black tests
black doc/conf.py
black setup.py
.PHONY: black-check
black-check:
black --check --exclude '/_definitions/|version.py' src/km3io