From 13aa407e47b52ecfdb49bb83ec4d235291ec2541 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Mon, 21 Oct 2024 11:59:58 +0200 Subject: [PATCH] chore: install sync target on "make develop" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9386033b..36b5110c 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ install: ## Install the dependencies .PHONY: develop develop: ## Install the test and dev dependencies - python3 -m pip install -e .[test,dev] + python3 -m pip install -e .[test,dev,sync] playwright install .PHONY: format