Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanx749 committed Feb 4, 2024
1 parent 153a0a5 commit c74209c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/examples/examples.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Cluster the sequences using cd-hit."
"Cluster the sequences using cd-hit. [Path](#pathlib) objects can also be used in arguments."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion pycdhit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from ._commands import * # noqa: F403
from ._io import * # noqa: F403

VERSION = "0.10.0"
VERSION = "0.11.0"

__all__ = [ # noqa: F405
"CommandBase",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_cd_hit(cdhit_temp_files):
in_path, out_path = cdhit_temp_files
in_path.write_text(FASTA)
try:
res = _commands.cd_hit_est(i=str(in_path), o=str(out_path))
res = _commands.cd_hit_est(i=in_path, o=out_path)
assert isinstance(res, CompletedProcess)
except (CalledProcessError, FileNotFoundError):
pass

0 comments on commit c74209c

Please sign in to comment.