bachya/pypollencom

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
clean:
    pipenv --rm
coverage:
    pipenv run py.test -s --verbose --cov-report term-missing --cov-report xml --cov=pypollencom tests
init:
    pip3 install --upgrade pip pipenv
    pipenv lock
    pipenv install --three --dev
    pipenv run pre-commit install
lint:
    pipenv run flake8 pypollencom
    pipenv run pydocstyle pypollencom
    pipenv run pylint pypollencom
publish:
    pipenv run python setup.py sdist bdist_wheel
    pipenv run twine upload dist/*
    rm -rf dist/ build/ .egg pypollencom.egg-info/
test:
    pipenv run py.test
typing:
    pipenv run mypy --ignore-missing-imports pypollencom