chores: run lint and format (#284)

This commit is contained in:
Deshraj Yadav
2023-07-15 21:34:06 -07:00
committed by GitHub
parent ac68986404
commit 05a4eef6ae
7 changed files with 19 additions and 14 deletions

View File

@@ -4,7 +4,7 @@ PIP := $(PYTHON) -m pip
PROJECT_NAME := embedchain
# Targets
.PHONY: install format lint clean test
.PHONY: install format lint clean test ci_lint ci_test
install:
$(PIP) install --upgrade pip
@@ -22,3 +22,9 @@ clean:
test:
$(PYTHON) -m pytest
ci_lint:
poetry run ruff .
ci_test:
poetry run pytest