Skip to content

Commit

Permalink
Don't use git+https to install on CI (napari#4116)
Browse files Browse the repository at this point in the history
  • Loading branch information
jni authored Feb 18, 2022
1 parent d323b18 commit e6ebaae
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,21 +161,24 @@ jobs:
uses: codecov/codecov-action@v1

test_pip_install:
name: ubuntu-latest 3.8 pip install
name: ubuntu-latest 3.9 pip install
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.8
- uses: actions/checkout@v2
with:
path: napari-from-github

- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

- uses: tlambert03/setup-qt-libs@v1

- name: Install this commit
run: |
# pip install this git sha directly from github
pip install --upgrade pip
pip install git+https://github.com/${{ github.repository }}.git@${{ github.sha }}#egg=napari[all,testing]
pip install ./napari-from-github[all,testing]
- name: Test
uses: GabrielBB/xvfb-action@v1
Expand Down

0 comments on commit e6ebaae

Please sign in to comment.