Not able to override global store_failures flag

Hi,

On a global level I have set our project to store all test failures this way in my project yml file:

tests:
  severity: warn
  store_failures: true

However, whenever I attempt not to store particular test results by overriding this flag - either for a generic test or a custom generic test - the results are still saved.

In my model yml file:

...
tests:
  - accepted_values:
        values: [0,1]
        config:
            store_failures: false
...

In my custom generic file:

...
{{ config(store_failures = false) }}
...

I cannot get it to work either using ‘tests’ or ‘data_tests’. Is there a bug here or am I doing this the wrong way?

Thanks in advance!