pre-commit 187 B

123456789
  1. #!/bin/sh
  2. set -ex
  3. pipenv clean
  4. pipenv sync --dev
  5. pipenv run black --check
  6. pipenv run pylint yamily tests/*
  7. pipenv run pytest --cov=yamily --cov-report=term-missing --cov-fail-under=100