From d663ab39c44b2d99bf4f47565e1ca84ce47e6db2 Mon Sep 17 00:00:00 2001 From: wtclarke Date: Thu, 31 Oct 2024 15:17:21 +0000 Subject: [PATCH] Improve install robustness for CI tests. As dones for spec2nii --- .github/workflows/push_pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml index 18e6b33..00aa89e 100644 --- a/.github/workflows/push_pr.yml +++ b/.github/workflows/push_pr.yml @@ -39,5 +39,5 @@ jobs: shell: bash -l {0} run: | conda install pytest - pip install . - pytest -k "not orientation" tests + pip install --no-deps . + pytest -m "not orientation" tests