Add format target in makefiles
This commit is contained in:
parent
6b7658d5a7
commit
d12e232a6f
|
@ -6,5 +6,6 @@ PIP_INSTALL := --editable .[dev]
|
|||
PYLINT_ARG := libretimeapi
|
||||
MYPY_ARG := libretimeapi
|
||||
|
||||
format: .format
|
||||
lint: .pylint .mypy
|
||||
clean: .clean
|
||||
|
|
|
@ -6,5 +6,6 @@ PIP_INSTALL := --editable .[dev]
|
|||
PYLINT_ARG := airtime-celery
|
||||
MYPY_ARG := airtime-celery
|
||||
|
||||
format: .format
|
||||
lint: .pylint .mypy
|
||||
clean: .clean
|
||||
|
|
|
@ -7,6 +7,7 @@ PYLINT_ARG := airtime_analyzer tests
|
|||
MYPY_ARG := airtime_analyzer tests
|
||||
PYTEST_ARG := --cov=airtime_analyzer tests
|
||||
|
||||
format: .format
|
||||
lint: .pylint .mypy
|
||||
|
||||
fixtures:
|
||||
|
|
|
@ -7,6 +7,7 @@ PYLINT_ARG := api_clients tests
|
|||
MYPY_ARG := api_clients tests
|
||||
PYTEST_ARG := --cov=api_clients tests
|
||||
|
||||
format: .format
|
||||
lint: .pylint .mypy
|
||||
test: .pytest
|
||||
clean: .clean
|
||||
|
|
|
@ -6,5 +6,6 @@ PIP_INSTALL := --editable .[dev]
|
|||
PYLINT_ARG := liquidsoap pypo
|
||||
MYPY_ARG := liquidsoap pypo
|
||||
|
||||
format: .format
|
||||
lint: .pylint .mypy
|
||||
clean: .clean
|
||||
|
|
Loading…
Reference in New Issue