Skip to content

Commit

Permalink
Fix dlt version test
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed May 11, 2024
1 parent 1b17ded commit d18b4ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions tests/pipeline/cases/github_pipeline/github_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
from github_pipeline import github # type: ignore[import-not-found]

if __name__ == "__main__":
p = dlt.pipeline(
"dlt_github_pipeline", destination="duckdb", dataset_name="github_3", dev_mode=False
)
p = dlt.pipeline("dlt_github_pipeline", destination="duckdb", dataset_name="github_3")
github_source = github()
if len(sys.argv) > 1:
# load only N issues
Expand Down
4 changes: 1 addition & 3 deletions tests/pipeline/cases/github_pipeline/github_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ def load_issues(


if __name__ == "__main__":
p = dlt.pipeline(
"dlt_github_pipeline", destination="duckdb", dataset_name="github_3", dev_mode=False
)
p = dlt.pipeline("dlt_github_pipeline", destination="duckdb", dataset_name="github_3")
github_source = github()
if len(sys.argv) > 1:
# load only N issues
Expand Down

0 comments on commit d18b4ea

Please sign in to comment.