the s3tests.py task is filtering out several attrs by default. but
when dbstore uses `extra_attrs` to add 'not fails_on_dbstore', it
overwrites those other filters
Signed-off-by: Casey Bodley <cbodley@redhat.com>
client.0:
dbstore_tests: True
rgw_server: client.0
- extra_attrs: ["not fails_on_rgw","not fails_on_dbstore"]
-
+ extra_attrs: ["not fails_on_dbstore"]
attrs += ['not sse_s3']
if 'extra_attrs' in client_config:
- attrs = client_config.get('extra_attrs')
+ attrs += client_config.get('extra_attrs')
args += ['tox', '--', '-v', '-m', ' and '.join(attrs)]
if 'extra_args' in client_config:
args.append(client_config['extra_args'])