Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.provenance.tests.test_archive_interface::test_archive_multiplexed[out-of-order]
Failed

TEST RESULT

Run At
Sep 30 2022, 6:46 PM
Details
repo = 'out-of-order' archive = <swh.provenance.storage.archive.ArchiveStorage object at 0x7f9bd2a795c0> @pytest.mark.parametrize( "repo", ("cmdbts2", "out-of-order", "with-merges"), ) def test_archive_multiplexed(repo: str, archive: ArchiveInterface) -> None: # read data/README.md for more details on how these datasets are generated data = load_repo_data(repo) fill_storage(archive.storage, data) # test against ArchiveMultiplexer > with grpc_server(repo) as url: .tox/py3/lib/python3.7/site-packages/swh/provenance/tests/test_archive_interface.py:258: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.7/contextlib.py:112: in __enter__ return next(self.gen) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ dataset = 'out-of-order' @contextmanager def grpc_server(dataset): dataset_path = ( Path(__file__).parents[0] / "data/swhgraph" / dataset / "compressed/example" ) queue = multiprocessing.Queue() server = multiprocessing.Process( target=run_grpc_server, kwargs={"queue": queue, "dataset_path": dataset_path} ) server.start() res = queue.get() if isinstance(res, Exception): > raise res E TypeError: make_app() got an unexpected keyword argument 'debug' .tox/py3/lib/python3.7/site-packages/swh/provenance/tests/conftest.py:196: TypeError