Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
mirpedrol committed Jul 29, 2022
1 parent ca5f586 commit 3bf6d70
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@ def test_wf_use_local_configs(self, tmp_path):
# Get a workflow and configs
test_pipeline_dir = os.path.join(tmp_path, "nf-core-testpipeline")
create_obj = nf_core.create.PipelineCreate(
"testpipeline", "This is a test pipeline", "Test McTestFace", no_git=True, outdir=test_pipeline_dir, plain=True
"testpipeline",
"This is a test pipeline",
"Test McTestFace",
no_git=True,
outdir=test_pipeline_dir,
plain=True,
)
create_obj.init_pipeline()

Expand Down
7 changes: 6 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ def setUp(self):
self.tmp_dir = tempfile.mkdtemp()
self.test_pipeline_dir = os.path.join(self.tmp_dir, "nf-core-testpipeline")
self.create_obj = nf_core.create.PipelineCreate(
"testpipeline", "This is a test pipeline", "Test McTestFace", no_git=True, outdir=self.test_pipeline_dir, plain=True
"testpipeline",
"This is a test pipeline",
"Test McTestFace",
no_git=True,
outdir=self.test_pipeline_dir,
plain=True,
)
self.create_obj.init_pipeline()
# Base Pipeline object on this directory
Expand Down

0 comments on commit 3bf6d70

Please sign in to comment.