Skip to content
Snippets Groups Projects
Commit dfccfc28 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

test(pipeline): outcommen test content

parent bca3f582
No related branches found
No related tags found
No related merge requests found
...@@ -4,16 +4,15 @@ from aliby.pipeline import PipelineParameters, Pipeline ...@@ -4,16 +4,15 @@ from aliby.pipeline import PipelineParameters, Pipeline
def test_local_pipeline(file: str): def test_local_pipeline(file: str):
print(file) params = PipelineParameters.default(
# params = PipelineParameters.default( general={
# general={ "expt_id": file,
# "expt_id": file, "distributed": 0,
# "distributed": 0, "directory": "test_output/",
# "directory": "../local/", "overwrite": True,
# "overwrite": True, },
# }, tiler={"ref_channel": 0},
# tiler={"ref_channel": 0}, )
# ) p = Pipeline(params)
# p = Pipeline(params)
# p.run() p.run()
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