Skip to content

Commit

Permalink
try installing bcftools before pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
aryarm authored Jan 2, 2024
1 parent 6a63edd commit fff8b32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ def install_handle_python(session):
@session(venv_backend=conda_cmd, venv_params=conda_args, python=python_versions)
def tests(session: Session) -> None:
"""Run the test suite."""
session.conda_install(
"art",
"bcftools==1.19",
channel="bioconda",
)
session.conda_install(
"numpy",
"pytest",
"pytest-cov",
channel="conda-forge",
)
session.conda_install(
"art",
"bcftools==1.19",
channel="bioconda",
)
install_handle_python(session)
session.run("bcftools", "--version")
session.run(
Expand Down

0 comments on commit fff8b32

Please sign in to comment.