Complete the code to enable slim CI by specifying the correct flag.
dbt run --[1] slimThe --state flag is used to enable slim CI by comparing the current state with the previous run.
Complete the code to specify the path to the previous run's manifest for state comparison.
dbt run --state [1]The path target/previous/manifest.json points to the previous run's manifest file used for state comparison in slim CI.
Fix the error in the command to run dbt with slim CI and state comparison.
dbt run --state=[1]The --state flag expects the directory path containing the previous run's manifest, not the manifest file itself.
Fill both blanks to create a command that runs dbt with slim CI using the correct state directory and selector.
dbt run --state [1] --select [2]
The --state target/previous flag points to the previous run's state, and --select models+ selects models and their dependencies for the run.
Fill all three blanks to write a dbt command that runs slim CI with state comparison, specifying the state directory, selector, and output format.
dbt run --state [1] --select [2] --output [3]
This command runs dbt with slim CI using the previous state directory, selects models and their dependencies, and outputs results in JSON format.