mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-25 12:56:22 +02:00
github-actions: fix pytest
This commit is contained in:
parent
a8731c45f2
commit
48eb989a0c
1 changed files with 11 additions and 13 deletions
24
.github/workflows/actions.yml
vendored
24
.github/workflows/actions.yml
vendored
|
|
@ -28,22 +28,20 @@ jobs:
|
|||
with:
|
||||
python-version: ${{ matrix.version }}
|
||||
|
||||
- name: Upgrade pip
|
||||
run: pip install --upgrade pip
|
||||
|
||||
- name: Install setuptools
|
||||
run: pip install setuptools
|
||||
|
||||
- name: Install lib
|
||||
run: python setup.py develop --user
|
||||
run: |
|
||||
pip install --upgrade pip
|
||||
pip install setuptools
|
||||
python setup.py develop --user
|
||||
|
||||
- name: Run pytest
|
||||
run: pytest
|
||||
|
||||
- name: Install wheel
|
||||
run: pip install wheel
|
||||
- name: pytest
|
||||
run: |
|
||||
pip install pytest
|
||||
pytest
|
||||
|
||||
- name: Build wheel
|
||||
run: python setup.py wheel
|
||||
run: |
|
||||
pip install wheel
|
||||
python setup.py wheel
|
||||
|
||||
# TODO: add deploy job
|
||||
Loading…
Add table
Add a link
Reference in a new issue