You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ test-local:
61
61
DESTINATION__POSTGRES__CREDENTIALS=postgresql://loader:loader@localhost:5432/dlt_data DESTINATION__DUCKDB__CREDENTIALS=duckdb:///_storage/test_quack.duckdb poetry run pytest tests -k '(postgres and duckdb)'
62
62
63
63
test-common:
64
-
poetry run pytest tests/common tests/normalize tests/extract tests/pipeline tests/reflection tests/sources && poetry run pytest tests/cli/common
64
+
poetry run pytest tests/common tests/normalize tests/extract tests/pipeline tests/reflection tests/sources tests/cli/common
Copy file name to clipboardExpand all lines: docs/website/docs/reference/command-line-interface.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,13 @@ Shows all available verified sources and their short descriptions. For each sour
33
33
and prints the relevant warning.
34
34
35
35
## `dlt deploy`
36
-
This command prepares your pipeline for deployment and gives you step by step instruction how to accomplish it.
36
+
This command prepares your pipeline for deployment and gives you step by step instruction how to accomplish it. To enabled this functionality please first execute
37
+
```sh
38
+
pip install "dlt[cli]"
39
+
```
40
+
that will add additional packages to current environment.
41
+
42
+
> 💡 We ask you to install those dependencies separately to keep our core library small and make it work everywhere.
0 commit comments