chore: install local python deps in editable mode

This commit is contained in:
jo 2022-07-27 12:44:18 +02:00 committed by Kyle Robbertze
parent e97b06496a
commit b93e1e5570
11 changed files with 17 additions and 14 deletions

View file

@ -2,7 +2,10 @@ all: lint
include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PIP_INSTALL := \
--editable ../api-client \
--editable ../shared \
--editable .[dev]
PYLINT_ARG := libretime_playout tests || true
MYPY_ARG := libretime_playout tests || true
BANDIT_ARG := libretime_playout || true

View file

@ -41,8 +41,6 @@ setup(
"dev": [
"distro",
"requests-mock",
f"libretime-api-client @ file://localhost{here.parent / 'api-client'}",
f"libretime-shared @ file://localhost{here.parent / 'shared'}",
],
},
zip_safe=False,