Skip to content

Commit

Permalink
Fix test (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
standage authored Sep 16, 2024
1 parent 9e7961b commit 8b22a06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [0.8.4] 2024-09-16

### Fixed
- Resolved a bug with the test suite (#187).


## [0.8.3] 2024-09-16

### Fixed
Expand Down
4 changes: 1 addition & 3 deletions microhapulator/tests/test_pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
from microhapulator.tests import data_file
import pandas as pd
import pytest
from shutil import copyfile
from subprocess import run


def test_validate_sample_input_files():
Expand Down Expand Up @@ -92,7 +90,7 @@ def test_pipe_gbr_usc10(tmp_path):
gapped_rate = pd.read_csv(gapped_file, sep="\t")
assert len(gapped_rate) == 4
assert list(gapped_rate.Marker) == ["mh02USC-2pA", "mh04USC-4pA", "mh06USC-6pA", "mh09USC-9pA"]
assert list(gapped_rate.TypedReads) == [2, 2, 2, 2]
assert list(gapped_rate.GappedReads) == [2, 2, 2, 2]


def test_pipe_jpt_usc10_single(tmp_path):
Expand Down

0 comments on commit 8b22a06

Please sign in to comment.