Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.loader.package.pypi.tests.test_pypi::test_pypi_visit_1_release_with_2_artifacts
Failed

TEST RESULT

Run At
Aug 12 2021, 12:13 PM
Details
swh_storage = <swh.storage.proxies.retry.RetryingProxyStorage object at 0x7ffaa6594470> requests_mock_datadir = <requests_mock.mocker.Mocker object at 0x7ffaa66114a8> def test_pypi_visit_1_release_with_2_artifacts(swh_storage, requests_mock_datadir): """With no prior visit, load a pypi project ends up with 1 snapshot """ url = "https://pypi.org/project/nexter" loader = PyPILoader(swh_storage, url) actual_load_status = loader.load() expected_snapshot_id = hash_to_bytes("a27e638a4dad6fbfa273c6ebec1c4bf320fb84c6") > assert actual_load_status == { "status": "eventful", "snapshot_id": expected_snapshot_id.hex(), } E AssertionError: assert {'snapshot_id... 'uneventful'} == {'snapshot_id...': 'eventful'} E Differing items: E {'status': 'uneventful'} != {'status': 'eventful'} E {'snapshot_id': '1a8893e6a86f444e8be8e7bda6cb34fb1735a00e'} != {'snapshot_id': 'a27e638a4dad6fbfa273c6ebec1c4bf320fb84c6'} E Full diff: E { E - 'snapshot_id': 'a27e638a4dad6fbfa273c6ebec1c4bf320fb84c6', E + 'snapshot_id': '1a8893e6a86f444e8be8e7bda6cb34fb1735a00e',... E E ...Full output truncated (5 lines hidden), use '-vv' to show .tox/py3/lib/python3.7/site-packages/swh/loader/package/pypi/tests/test_pypi.py:755: AssertionError