Skip to content

Commit

Permalink
attempt to install torch first in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rchan26 committed Nov 16, 2023
1 parent b80b367 commit e325389
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install torch
run: |
python -m pip install torch==1.9.0
- name: Install package
run: python -m pip install torch==1.9.0 & python -m pip install .[test]
run: python -m pip install .[test]

- name: Test package
run: python -m pytest -ra --cov=nlpsig
Expand Down

0 comments on commit e325389

Please sign in to comment.