From fe977673bee813dd939fd0214f496b95c0ae8b35 Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sun, 4 Feb 2024 10:36:45 +0000 Subject: [PATCH] adding api folder to run linting --- .github/workflows/tests.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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