Complete the code to run all tests in a dbt project.
dbt [1]Use dbt test to run all tests defined in your dbt project.
Complete the code to run tests only for the 'models' directory.
dbt test --select [1]--select flag.The --select models option runs tests only on models.
Fix the error in the command to run tests on a specific model named 'customers'.
dbt test --select [1]Use the model name directly with --select to run tests on that model.
Fill both blanks to run tests on models in the 'finance' directory and limit output to errors only.
dbt test --select [1] --[2]
--verbose instead of --quiet.Use --select finance to choose the finance models and --quiet to show only errors.
Fill all three blanks to run tests on the 'sales' model, show verbose output, and use the 'fail-fast' option.
dbt test --select [1] --[2] --[3]
--quiet instead of --debug.--fail-fast option.Use --select sales to test the sales model, --debug for detailed output, and --fail-fast to stop on first failure.