Skip to content

Commit

Permalink
explicit paths
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahlanzrath committed Dec 6, 2024
1 parent b7b34bd commit 27bbe86
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 27bbe86

Please sign in to comment.