Skip to content

Commit

Permalink
update dependency installation in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jul 21, 2024
1 parent 2ac3a8c commit 809cee7
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,18 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
- name: Install build dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest
- name: Install lib
run: |
python setup.py develop
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
Expand All @@ -57,16 +60,19 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install dependencies
- name: Install build dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest
- name: Install lib
run: |
python setup.py develop
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
pytest GPy/testing
Expand All @@ -88,13 +94,16 @@ jobs:
- name: Install dependencies
run: |
pip install setuptools
pip install matplotlib
pip install pytest
- name: Install lib
run: |
python setup.py develop
- name: Install test dependencies
run: |
pip install matplotlib
pip install pytest
- name: pytest
run: |
pytest GPy/testing
Expand Down

0 comments on commit 809cee7

Please sign in to comment.