We have been using the dbt data quality package without any issues up until now. When we run a dbt build or test command with the addition of --store-failures flag i get the : macro 'dbt_macro__create_schema' takes no keyword argument 'relation' error. What we have found out is that you have a macro called create_schema which takes dry_run (boolean) as an argument while dbt's own create schema macro takes relation as an argument thus generating the error.
We have been using the dbt data quality package without any issues up until now. When we run a dbt build or test command with the addition of --store-failures flag i get the : macro 'dbt_macro__create_schema' takes no keyword argument 'relation' error. What we have found out is that you have a macro called create_schema which takes dry_run (boolean) as an argument while dbt's own create schema macro takes relation as an argument thus generating the error.