does dbt under prefect 2 automatically generate fi...
# prefect-integrations
t
does dbt under prefect 2 automatically generate files for test failures? After we run dbt test in prefect 1, we'd prepare an email with some sample rows for each test failure. but when I try and find the files in prefect 2, it doesn't look like they're written to the disk. I'm talking about the files from test failures like these:
Copy code
PID 54 stream output:
16:13:32  Failure in test unique_some_table (models/some_table.yml)
16:13:32    Got 2330 results, configured to fail if != 0
16:13:32  
16:13:32    compiled Code at target/compiled/dwh/models/l3_stage/some_table.yml/unique_some_table.sql
16:13:32  
16:13:32  Done. PASS=6 WARN=0 ERROR=3 SKIP=0 TOTAL=9
I can't seem to find the file
target/compiled/dwh/models/l3_stage/some_table.yml/unique_some_table.sql
anywhere on my disk.