File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ The `.piperider/` folder may contains these files
77Name | Description
88------------|---------------
99config.yml | The project config file. Generated by ` piperider init ` . Contains the data source and dbt integration settings.
10- credentials.yml | The data source connection parameters and credentials to connect to data sources. This is supposed to not be source controlled.
11- assertions/ | The folder to define assertions. Please see [ assertions] ( ./assertions.md )
12- plugins/ | The folder to define custom defined test function. Please see [ user defined test function] ( ./user-defined-test-function.md )
10+ credentials.yml | The data source connection parameters and credentials to connect to data sources. This is supposed to not be source controlled.
1311outputs/ | The piperider run raw result generated by ` piperider run `
1412reports/ | The piperider report generated by ` piperider generate-report `
1513comparisons/ | The piperider report generated by ` piperider compare-report `
Original file line number Diff line number Diff line change @@ -241,7 +241,6 @@ class PreRunValidatingResult(Enum):
241241
242242
243243def _pre_run_validating (ds : DataSource ) -> (PreRunValidatingResult , Exception ):
244- console = Console ()
245244 err = ds .verify_connector ()
246245 if err :
247246 return PreRunValidatingResult .FAILED_TO_LOAD_CONNECTOR , err
You can’t perform that action at this time.
0 commit comments