fix: Makefile - black config ignored

This commit is contained in:
Bharath Vignesh J K 2023-05-10 01:20:23 +05:30
parent f48dad555d
commit be5ae310ba
1 changed files with 2 additions and 2 deletions

View File

@ -39,14 +39,14 @@ test: ## Run unit tests
./venv/bin/python ./unitest.py
./venv/bin/python ./unitest-restful.py
./venv/bin/python ./unitest-xmlrpc.py
./venv/bin/python -m black ./glances --check --exclude outputs/static
./venv/bin/python -m black ./glances --check --config pyproject.toml
./venv/bin/pyright glances
test-with-upgrade: venv-upgrade venv-dev-upgrade ## Run unit tests
./venv/bin/python ./unitest.py
./venv/bin/python ./unitest-restful.py
./venv/bin/python ./unitest-xmlrpc.py
./venv/bin/python -m black ./glances --check --exclude outputs/static
./venv/bin/python -m black ./glances --check --config pyproject.toml
./venv/bin/pyright glances
# ===================================================================