diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4f7e8b9..c84114b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -66,4 +66,4 @@ jobs: - name: Lint with pylint run: | - pylint --fail-under=10 deepface/ + pylint --fail-under=10 deepface/ api/ diff --git a/Makefile b/Makefile index cb8e9ae..dbfb145 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ test: cd tests && python -m pytest . -s --disable-warnings lint: - python -m pylint deepface/ --fail-under=10 + python -m pylint deepface/ api/ --fail-under=10 coverage: pip install pytest-cov && cd tests && python -m pytest --cov=deepface \ No newline at end of file