kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
15 wiersze
260 B
Makefile
15 wiersze
260 B
Makefile
|
SHELL := bash
|
||
|
CPU_CORES := $(shell N=$$(nproc); echo $$(( $$N > 4 ? 4 : $$N )))
|
||
|
|
||
|
.PHONY: install lint
|
||
|
|
||
|
install:
|
||
|
poetry install
|
||
|
|
||
|
lint:
|
||
|
poetry run pylint \
|
||
|
--jobs=$(CPU_CORES) \
|
||
|
--output-format=colorized \
|
||
|
--recursive=true \
|
||
|
config funkwhale_api tests
|