Skip to content
Snippets Groups Projects
Commit b92e3fd0 authored by vlorentz's avatar vlorentz
Browse files

Use swh-storage validation proxy.

Required by swh-storage >= v0.0.172.
parent 73d1e5e9
No related branches found
No related tags found
1 merge request!129Use swh-storage validation proxy in scheduler
......@@ -579,7 +579,14 @@ def _fill_storage_with_origins(storage, nb_origins):
def storage():
"""An instance of in-memory storage that gets injected
into the CLI functions."""
storage = get_storage('memory')
storage_config = {
'cls': 'pipeline',
'steps': [
{'cls': 'validate'},
{'cls': 'memory'},
]
}
storage = get_storage(**storage_config)
with patch('swh.storage.get_storage') as get_storage_mock:
get_storage_mock.return_value = storage
yield storage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment