From 27bbe86f6abc19181dc5dc98115aedf9baff701a Mon Sep 17 00:00:00 2001 From: "Lanzrath, Hannah" Date: Fri, 6 Dec 2024 20:05:08 +0100 Subject: [PATCH] explicit paths --- .github/workflows/pipeline.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 85d3bae4..485afe67 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -71,7 +71,7 @@ jobs: - name: Update Environment (Windows) run: | - call "%CONDA%\etc\profile.d\conda.bat" + call "C:\Users\runneradmin\miniconda3\condabin\conda.bat" conda activate cadet-process mamba install python=${{ matrix.python-version }} echo "python=${{ matrix.python-version }}.*" > %CONDA_PREFIX%\conda-meta\pinned @@ -82,20 +82,17 @@ jobs: - name: Install (Windows) run: | - call "%CONDA%\etc\profile.d\conda.bat" + call "C:\Users\runneradmin\miniconda3\condabin\conda.bat" conda activate cadet-process pip install -e ./[testing] shell: cmd /C call {0} - name: Run Tests (Windows) run: | - call "%CONDA%\etc\profile.d\conda.bat" + call "C:\Users\runneradmin\miniconda3\condabin\conda.bat" conda activate cadet-process python -m unittest discover -s tests shell: cmd /C call {0} - - name: Install - run: | - pip install -e ./[testing] - name: Test run: |