sintonia/api/Makefile
Kyle Robbertze 6ca1ca2aec
feat: run API tests in CI (#1421)
* feat: run API tests in CI

* fix: remove incorrect test for guest user viewing themself
2021-10-18 14:17:34 +02:00

15 lines
299 B
Makefile

all: lint
include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretimeapi
MYPY_ARG := libretimeapi
format: .format
lint: .format-check .pylint .mypy
clean: .clean
test: $(VENV)
source $(VENV)/bin/activate
LIBRETIME_DEBUG=True $(VENV)/bin/libretime-api test libretimeapi