Skip to content

Commit

Permalink
Fix upstream-dev CI (#319)
Browse files Browse the repository at this point in the history
* Fix upstream-dev CI

* add scipy
  • Loading branch information
dcherian authored Jan 13, 2024
1 parent 11d2b7d commit ca46bd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/upstream-dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
upstream-dev:
name: upstream-dev
runs-on: ubuntu-latest
if: ${{ (contains(github.event.pull_request.labels.*.name, 'test-upstream') && github.event_name == 'pull_request') || github.event_name == 'workflow_dispatch' }}
if: ${{
(contains(github.event.pull_request.labels.*.name, 'test-upstream') && github.event_name == 'pull_request')
|| github.event_name == 'workflow_dispatch'
|| github.event_name == 'schedule'
}}
defaults:
run:
shell: bash -l {0}
Expand Down
1 change: 1 addition & 0 deletions ci/upstream-dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies:
- pooch
- toolz
- numba
- scipy
- pytest
- pytest-cov
- pytest-pretty
Expand Down

0 comments on commit ca46bd6

Please sign in to comment.