From c435f1af69bc3514a79ca6af2a6fd40335dd0428 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Wed, 7 Sep 2022 15:58:58 -0400 Subject: [PATCH] Add --sync option to dev env install command in makefile target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3dc1399..5723e72 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ test: ## Run the project testsuite(s) poetry run tox --recreate dev: ## Create the local dev environment - poetry install -E poetry + poetry install -E poetry --sync poetry run pre-commit install publish: test wheel source ## Build and upload to pypi (requires $PYPI_API_KEY be set)