diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c84114bd5..4f7e8b95d 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/ api/ + pylint --fail-under=10 deepface/ diff --git a/Makefile b/Makefile index dbfb14537..cb8e9aeb4 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ test: cd tests && python -m pytest . -s --disable-warnings lint: - python -m pylint deepface/ api/ --fail-under=10 + python -m pylint deepface/ --fail-under=10 coverage: pip install pytest-cov && cd tests && python -m pytest --cov=deepface \ No newline at end of file