Skip to content

Commit fc9bc6a

Browse files
committed
add mpi4py dependency
1 parent 8f1902d commit fc9bc6a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/nrn-modeldb-ci.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,16 @@ jobs:
8080
- name: Set models to run for PR
8181
run: |
8282
# Select a few models to run CI for PRs
83-
echo 'MODELS_TO_RUN=279 3264 22203 144549 105507 194897' >> $GITHUB_ENV
83+
#TODO - temporary run added python models
84+
echo 'MODELS_TO_RUN=156039 194897 226422 186768 189922 195615 139421 144586 244412 39948 195569 249404 206400 144511 229276 151282 264834 51685' >> $GITHUB_ENV
8485
if: github.event_name == 'pull_request'
8586

8687
- name: Install dependencies and project
8788
id: install-deps
8889
run: |
8990
set
91+
#Install mpi
92+
sudo apt-get install mpich libmpich-dev
9093
# Set up Xvfb
9194
sudo apt-get install xvfb
9295
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1600x1200x24 & # run in bg
@@ -96,6 +99,7 @@ jobs:
9699
#Install project in editable mode
97100
python -m pip install -e .
98101
echo "::set-output name=date::$(date -u "+%Y%m")"
102+
99103
100104
- name: Cache ModelDB models
101105
id: cache-models

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'scipy',
1919
'2to3',
2020
'reindent',
21+
'mpi4py'
2122
]
2223

2324
with open('README.md', 'r', encoding='utf-8') as f:

0 commit comments

Comments
 (0)