Makefile 192 B

12345678
  1. test:
  2. cd tests && python -m pytest . -s --disable-warnings
  3. lint:
  4. python -m pylint deepface/ --fail-under=10
  5. coverage:
  6. pip install pytest-cov && cd tests && python -m pytest --cov=deepface