Skip to content

Commit a94b11f

Browse files
authored
Chore: consolidate make install-* (#3874)
1 parent 503d13f commit a94b11f

File tree

3 files changed

+9
-18
lines changed

3 files changed

+9
-18
lines changed

.circleci/continue_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ jobs:
6767
name: Install ODBC
6868
command: sudo apt-get install unixodbc-dev
6969
- run:
70-
name: Install SQLMesh and dbt adapter dependencies
71-
command: make install-cicd-test
70+
name: Install SQLMesh dev dependencies
71+
command: make install-dev
7272
- run:
7373
name: Fix Git URL override
7474
command: git config --global --unset url."ssh://git@github.com".insteadOf

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
.PHONY: docs
22

33
install-dev:
4-
pip3 install -e ".[dev,web,slack,dlt]"
5-
6-
install-cicd-test:
7-
pip3 install -e ".[dev,web,slack,cicdtest,dlt]" ./examples/custom_materializations
4+
pip3 install -e ".[dev,web,slack,dlt]" ./examples/custom_materializations
85

96
install-doc:
107
pip3 install -r ./docs/requirements.txt
118

12-
install-engine-test:
13-
pip3 install -e ".[dev,web,slack,mysql,postgres,databricks,redshift,bigquery,snowflake,trino,mssql,clickhouse,athena]"
14-
159
install-pre-commit:
1610
pre-commit install
1711

setup.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,17 @@
6868
"beautifulsoup4",
6969
"clickhouse-connect",
7070
"cryptography",
71-
"custom-materializations",
7271
"databricks-sql-connector",
7372
"dbt-bigquery",
7473
"dbt-core",
7574
"dbt-duckdb>=1.7.1",
7675
"dbt-snowflake",
76+
"dbt-athena-community",
77+
"dbt-clickhouse",
78+
"dbt-databricks",
79+
"dbt-redshift",
80+
"dbt-sqlserver>=1.7.0",
81+
"dbt-trino",
7782
"Faker",
7883
"google-auth",
7984
"google-cloud-bigquery",
@@ -105,14 +110,6 @@
105110
"types-requests==2.28.8",
106111
"typing-extensions",
107112
],
108-
"cicdtest": [
109-
"dbt-athena-community",
110-
"dbt-clickhouse",
111-
"dbt-databricks",
112-
"dbt-redshift",
113-
"dbt-sqlserver>=1.7.0",
114-
"dbt-trino",
115-
],
116113
"dbt": [
117114
"dbt-core<2",
118115
],

0 commit comments

Comments
 (0)