Skip to content

Commit 121fa57

Browse files
authored
dbt.include import issue for ci (dbt-labs#7383)
* separating the installation of the two requirements files
1 parent a88f640 commit 121fa57

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ CI_FLAGS =\
3030
.PHONY: dev_req
3131
dev_req: ## Installs dbt-* packages in develop mode along with only development dependencies.
3232
@\
33-
pip install -r dev-requirements.txt -r editable-requirements.txt
33+
pip install -r dev-requirements.txt
34+
pip install -r editable-requirements.txt
3435

3536
.PHONY: dev
3637
dev: dev_req ## Installs dbt-* packages in develop mode along with development dependencies and pre-commit.

0 commit comments

Comments
 (0)