TVB-2113: add bin path to modify distribution python path; updated th… #1577
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Win | |
on: [push] | |
jobs: | |
build: | |
name: Frw-Tests (3.11 Win) | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: put ~/.local/bin on $PATH | |
run: echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV | |
- name: cache ~/.local for pip deps | |
id: cache-local | |
uses: actions/cache@v3 | |
with: | |
path: ~/.local | |
key: pip-${{ hashFiles('tvb_build/docker/requirements_group') }} | |
- name: install tools and dependencies | |
if: steps.cache-local.outputs.cache-hit != 'true' | |
run: | | |
python -m pip install --upgrade setuptools pip wheel | |
pip install -U numpy<2 cython scikit-build pytest | |
python3 -m pip install cryptography | |
python3 -m pip install syncrypto | |
python3 -m pip install lockfile | |
python3 -m pip install -r tvb_build/docker/requirements_group --verbose | |
pip install --no-build-isolation tvb-gdist | |
- name: cache data | |
id: cache-data | |
uses: actions/cache@v3 | |
with: | |
path: tvb_data | |
key: tvbdata | |
- name: download data | |
if: steps.cache-data.outputs.cache-hit != 'true' | |
shell: pwsh | |
run: | | |
Invoke-WebRequest -OutFile C:\\TEMP\\tvb_data.zip -Uri "https://zenodo.org/record/10128131/files/tvb_data.zip?download=1" | |
Expand-Archive 'C:\\TEMP\\tvb_data.zip' C:\\tvb_data | |
del C:\\TEMP\\tvb_data.zip | |
cd C:\\tvb_data | |
pip install -e . | |
- name: run framework tests | |
shell: pwsh | |
run: | | |
cd tvb_build | |
cmd /k "install_full_tvb.bat" | |
cd ../tvb_framework | |
pytest tvb/tests/framework | |