Skip to content

Commit

Permalink
Do not create temporary files in the directory where meteor test is run
Browse files Browse the repository at this point in the history
  • Loading branch information
fplazaonate committed Mar 28, 2024
1 parent ec0b0aa commit a841c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meteor/meteor.py
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ def main() -> None: # pragma: no cover
meteor.ref_name = "test"
meteor.ref_dir = Path(tmpdirname) / "ref"
meteor.threads = 1
meteor.tmp_path = Path("")
meteor.tmp_path = Path(tmpdirname)
meteor.tmp_dir = Path(tmpdirname)
meteor.mapping_dir = Path(tmpdirname) / "map"
meteor.fastq_dir = Path(tmpdirname)
Expand Down

0 comments on commit a841c2d

Please sign in to comment.