Skip to content

Commit

Permalink
Update ci_scheduled.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mgough-970 authored Sep 12, 2023
1 parent c9db9ab commit 02df9d8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci_scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ jobs:
- name: Install dependencies
run: |
#pip install -r requirements.txt
if [ -f $(dirname "${{ matrix.notebooks }}")/pre-requirements.sh ]; then
chmod +x $(dirname "${{ matrix.notebooks }}")/pre-requirements.sh
./$(dirname "${{ matrix.notebooks }}")/pre-requirements.sh
fi
if [ -f $(dirname "${{ matrix.notebooks }}")/pre-requirements.txt ]; then
pip install -r "${{ matrix.notebooks }}")/pre-requirements.txt
fi
pip install -r $(dirname "${{ matrix.notebooks }}")/requirements.txt
pip install pytest
pip install nbval
Expand Down

0 comments on commit 02df9d8

Please sign in to comment.