dbt - Production Deployment
Given this Python script snippet to automate dbt runs, what will be printed if the dbt run succeeds?
import subprocess
result = subprocess.run(['dbt', 'run'], capture_output=True, text=True)
if result.returncode == 0:
print('Success')
else:
print('Failed')