mirror of
https://github.com/serengil/deepface.git
synced 2025-01-06 21:02:38 +03:00
8 lines
192 B
Makefile
8 lines
192 B
Makefile
test:
|
|
cd tests && python -m pytest . -s --disable-warnings
|
|
|
|
lint:
|
|
python -m pylint deepface/ --fail-under=10
|
|
|
|
coverage:
|
|
pip install pytest-cov && cd tests && python -m pytest --cov=deepface
|