Skip to content

Commit

Permalink
adding cupy to requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
brennanfreeze committed Aug 11, 2024
1 parent ddb8588 commit 2fa6a8b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
run: |
find . -name "*.egg-info" -type d -exec rm -rf {} +
- name: Install dependencies
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand All @@ -37,4 +42,4 @@ jobs:
env:
PYTHONPATH: ./src
run: |
pytest
pytest --maxfail=1 --disable-warnings -q

0 comments on commit 2fa6a8b

Please sign in to comment.