Skip to content

Commit

Permalink
WID-211: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rarescodemart committed Apr 24, 2023
1 parent 4628ac4 commit f5ffc62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install scipy numpy
python -m pip install -r requirements.txt
python -m pip install pytest pytest-cov pytest-mock tvb-data
python -m pip install nbformat nbconvert
python -m pip install dask
python -m pip install "dask[distributed]" --upgrade
python -m pip install pytest pytest-cov pytest-mock
- name: Test with pytest
run: |
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Test Notebooks
on:
push:
branches:
- '*'
pull_request:
types: [opened, synchronize, reopened]

Expand All @@ -12,24 +9,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8" ]
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install scipy numpy tvb-data
python -m pip install -r requirements.txt
python -m pip install nbformat nbconvert
python -m pip install dask
python -m pip install "dask[distributed]" --upgrade
- name: Run notebooks
uses: coactions/setup-xvfb@v1
Expand Down

0 comments on commit f5ffc62

Please sign in to comment.