Skip to content

Commit

Permalink
Fix meteor testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed May 9, 2024
1 parent 1c086a6 commit ccaf102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meteor/meteor.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,10 +825,10 @@ def main() -> None: # pragma: no cover
shutil.rmtree(Path(tmpdirname) / "test2")
meteor.mapped_sample_dir = meteor.mapping_dir / "test"
meteor.strain_dir = Path(tmpdirname) / "strain"
strain_detector = Strain(meteor, 100, 2, 0.2, 10, 0.2, False)
strain_detector = Strain(meteor, 100, 2, 2, 0.2, 10, 0.2, False)
strain_detector.execute()
meteor.mapped_sample_dir = meteor.mapping_dir / "test2"
strain_detector = Strain(meteor, 100, 2, 0.2, 10, 0.2, False)
strain_detector = Strain(meteor, 100, 2, 2, 0.2, 10, 0.2, False)
strain_detector.execute()
# Remove the mapping directory and its contents
shutil.rmtree(meteor.mapping_dir)
Expand Down

0 comments on commit ccaf102

Please sign in to comment.