Makefile 352 B

123456789101112131415161718192021
  1. .PHONY: init
  2. init:
  3. pip3 install pipenv --upgrade
  4. pipenv install --dev --skip-lock
  5. shell: init
  6. pipenv shell
  7. test:
  8. pipenv run py.test
  9. flake8:
  10. pipenv run flake8 acme
  11. coverage:
  12. pipenv run py.test -c .coveragerc --verbose tests
  13. publish:
  14. pipenv run python setup.py sdist bdist_wheel
  15. # publish somewhere...
  16. rm -fr build dist .egg acme.egg-info