From fff8b32885a96b6eb4045386d79d7f045b46adbc Mon Sep 17 00:00:00 2001 From: Arya Massarat <23412689+aryarm@users.noreply.github.com> Date: Tue, 2 Jan 2024 05:56:06 +0000 Subject: [PATCH] try installing bcftools before pytest --- noxfile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/noxfile.py b/noxfile.py index f5cb920c..a4eeb64f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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(