bachya/pyxcel

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
ci:
    pipenv run py.test --junitxml=report.xml
coverage:
    pipenv run py.test --verbose --cov-report term-missing --cov-report xml --cov=pyxcel tests
docs:
    cd docs && make html
flake8:
    pipenv run flake8 pyxcel
init:
    pip install --upgrade pip pipenv
    pipenv lock
    pipenv install --dev
publish:
    python setup.py sdist bdist_wheel
    pipenv run twine upload dist/*
    rm -rf dist/ build/ .egg pyxcel.egg-info/
test:
    pipenv run detox