Skip to content

Commit

Permalink
revert changes to mpi installation in unit_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rythorpe committed Oct 3, 2023
1 parent 883cf6f commit b524213
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,19 @@ jobs:
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install libopenmpi-dev openmpi-bin
fi;
- name: Install dependencies
shell: bash -el {0}
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install psutil joblib
conda install --yes -c conda-forge mpi4py openmpi
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
pip install mpi4py
else
conda install --yes mpi4py openmpi
fi
- name: Install HNN-core
shell: bash -el {0}
run: |
Expand Down

0 comments on commit b524213

Please sign in to comment.