self = <swh.storage.tests.test_in_memory.TestInMemoryStorage object at 0x7f38694f79e8>
swh_storage = <swh.storage.in_memory.InMemoryStorage object at 0x7f38694f7e48>
sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7f3873c6b710>
def test_origin_add(self, swh_storage, sample_data):
origins = list(sample_data.origins[:2])
origin_urls = [o.url for o in origins]
assert swh_storage.origin_get(origin_urls) == [None, None]
> stats = swh_storage.origin_add(origins)
.tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:1383:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <swh.storage.in_memory.InMemoryStorage object at 0x7f38694f7e48>
origins = [Origin(url='https://github.com/user1/repo1'), Origin(url='https://github.com/user2/repo1')]
def origin_add(self, origins: List[Origin]) -> Dict[str, int]:
> if not self._allow_overwrite:
E AttributeError: 'InMemoryStorage' object has no attribute '_allow_overwrite'
.tox/py3/lib/python3.7/site-packages/swh/storage/cassandra/storage.py:940: AttributeError
TEST RESULT
TEST RESULT
- Run At
- Apr 29 2021, 10:23 AM