From ce6782313465b23f8be9ff66c79af4506a8f7f22 Mon Sep 17 00:00:00 2001 From: "Wei-Chun, Chang" Date: Wed, 25 Oct 2023 22:36:40 +0800 Subject: [PATCH] Update docs and remove unused code Signed-off-by: Wei-Chun, Chang --- docs/project.md | 4 +--- piperider_cli/runner.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/project.md b/docs/project.md index a52e17034..ab95ba3d4 100644 --- a/docs/project.md +++ b/docs/project.md @@ -7,9 +7,7 @@ The `.piperider/` folder may contains these files Name | Description ------------|--------------- config.yml | The project config file. Generated by `piperider init`. Contains the data source and dbt integration settings. -credentials.yml | The data source connection parameters and credentials to connect to data sources. This is supposed to not be source controlled. -assertions/ | The folder to define assertions. Please see [assertions](./assertions.md) -plugins/ | The folder to define custom defined test function. Please see [user defined test function](./user-defined-test-function.md) +credentials.yml | The data source connection parameters and credentials to connect to data sources. This is supposed to not be source controlled. outputs/ | The piperider run raw result generated by `piperider run` reports/ | The piperider report generated by `piperider generate-report` comparisons/ | The piperider report generated by `piperider compare-report` diff --git a/piperider_cli/runner.py b/piperider_cli/runner.py index fd158c36d..32124d26c 100644 --- a/piperider_cli/runner.py +++ b/piperider_cli/runner.py @@ -241,7 +241,6 @@ class PreRunValidatingResult(Enum): def _pre_run_validating(ds: DataSource) -> (PreRunValidatingResult, Exception): - console = Console() err = ds.verify_connector() if err: return PreRunValidatingResult.FAILED_TO_LOAD_CONNECTOR, err