We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 317591d commit b467c0bCopy full SHA for b467c0b
.github/workflows/ci-app-tests.yml
@@ -78,16 +78,11 @@ jobs:
78
- name: Switch PyTorch URL
79
run: python -c "print('TORCH_URL=https://download.pytorch.org/whl/' + str('test/cpu/torch_test.html' if '${{matrix.release}}' == 'pre' else 'cpu/torch_stable.html'))" >> $GITHUB_ENV
80
81
- - name: Install package
+ - name: Install package & depenencies
82
env:
83
PACKAGE_NAME: ${{ matrix.pkg-name }}
84
run: |
85
- pip install -e . pytest --upgrade --find-links ${TORCH_URL}
86
- pip list
87
-
88
- - name: Install dependencies
89
- run: |
90
- pip install -r requirements/app/devel.txt --quiet --find-links ${TORCH_URL}
+ pip install -e . -r requirements/app/devel.txt -U -q --find-links ${TORCH_URL}
91
pip list
92
93
- name: Setup Node.js
0 commit comments