Skip to content

Commit 315e57d

Browse files
committed
fix build script
1 parent f783569 commit 315e57d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ jobs:
4848
python -m pip install --upgrade pip setuptools wheel
4949
python -m pip install torch==${{ matrix.torch-version }} --extra-index-url https://download.pytorch.org/whl/cpu
5050
pip install '.[dev]'
51-
51+
5252
- name: Run pytest tests
5353
timeout-minutes: 10
5454
run: |
55-
make test
55+
pip install pytest
56+
python -m pytest
5657
5758
- name: Build package
5859
run: |

0 commit comments

Comments
 (0)