https://github.com/jrbourbeau/pyunfold
Raw File
Tip revision: 0b50d43d17380d2663c3d1a8c3356fadde4917aa authored by James Bourbeau on 19 November 2018, 04:50:42 UTC
Version 0.5.0 release (#104)
Tip revision: 0b50d43
Makefile
all: install

install:
	python setup.py install

test:
	python -m pytest pyunfold

test-coverage:
	python -m pytest --cov=pyunfold --cov-report term pyunfold

test-coverage-html:
	python -m pytest --cov=pyunfold --cov-report html pyunfold
back to top