Skip to content

Commit

Permalink
install pytorch in separate step
Browse files Browse the repository at this point in the history
  • Loading branch information
teddykoker committed Dec 29, 2023
1 parent 4e8fae5 commit 4280863
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install -e '.[testing]'
- name: Install PyTorch
run: pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install Package
run: pip install -e '.[testing]'
- name: Run Pytest
run: python -m pytest -s -v

0 comments on commit 4280863

Please sign in to comment.