[WIP] download entities from zenodo and removing tvb_data dependacies #995
Workflow file for this run
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: | |
pull_request: | |
push: | |
jobs: | |
build: | |
name: Frw-Tests (3.10 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.10" | |
- 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_framework/requirements.txt') }} | |
- 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 cython scikit-build | |
pip install -r tvb_framework/requirements.txt | |
pip install --no-build-isolation tvb-gdist | |
- name: run framework tests | |
shell: pwsh | |
run: | | |
cd tvb_build | |
cmd /k "install_full_tvb.bat" | |
cd ../tvb_framework | |
pytest tvb/tests/framework | |