Skip to content

Commit

Permalink
Updated pytest workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kdiers committed Aug 30, 2024
1 parent f73cebe commit 0b0f0fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
env:
SUBJECTS_DIR: /home/runner/work/BrainPrint/BrainPrint/data
SUBJECT_ID: test
DESTINATION_DIR: /home/runner/work/BrainPrint/BrainPrint/dat
DESTINATION_DIR: /home/runner/work/BrainPrint/BrainPrint/data

jobs:
pytest:
Expand Down Expand Up @@ -46,6 +46,12 @@ jobs:
run: |
python -m pip install --progress-bar off --upgrade pip setuptools wheel
python -m pip install --progress-bar off .[test]
# For testing purposes and until the new lapy version is released,
# uninstall pypi package and reinstall from repo
- name: Get lapy from repo / branch
run: |
python -m pip uninstall lapy
python -m pip install git+https://github.com/deep-mi/lapy
- name: Create data folders
run: |
mkdir -p data/test/mri
Expand Down

0 comments on commit 0b0f0fc

Please sign in to comment.