Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.storage.tests.test_in_memory.TestInMemoryStorage::test_origin_metadata_get
Failed

TEST RESULT

Run At
Apr 29 2021, 10:28 AM
Details
self = <swh.storage.tests.test_in_memory.TestInMemoryStorage object at 0x7f46002e65c0> swh_storage = <swh.storage.in_memory.InMemoryStorage object at 0x7f453a923f98> sample_data = <swh.storage.tests.storage_data.StorageData object at 0x7f4548c14c18> def test_origin_metadata_get(self, swh_storage, sample_data): origin, origin2 = sample_data.origins[:2] fetcher, fetcher2 = sample_data.fetchers[:2] authority, authority2 = sample_data.authorities[:2] ( origin1_metadata1, origin1_metadata2, origin1_metadata3, ) = sample_data.origin_metadata[:3] > assert swh_storage.origin_add([origin, origin2]) == {"origin:add": 2} .tox/py3/lib/python3.7/site-packages/swh/storage/tests/storage_tests.py:4061: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <swh.storage.in_memory.InMemoryStorage object at 0x7f453a923f98> 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