From 121fa5793fda43aa62ece302114e9cf9ee7bb8a7 Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Tue, 18 Apr 2023 01:08:40 -0400 Subject: [PATCH] dbt.include import issue for ci (#7383) * separating the installation of the two requirements files --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 845e1eb12e2..9c276902194 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,8 @@ CI_FLAGS =\ .PHONY: dev_req dev_req: ## Installs dbt-* packages in develop mode along with only development dependencies. @\ - pip install -r dev-requirements.txt -r editable-requirements.txt + pip install -r dev-requirements.txt + pip install -r editable-requirements.txt .PHONY: dev dev: dev_req ## Installs dbt-* packages in develop mode along with development dependencies and pre-commit.