Skip to content

Commit 4472475

Browse files
committed
Run tests without Hatch
1 parent a8971b9 commit 4472475

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ jobs:
2222
strategy:
2323
matrix:
2424
runs-on: ['macos-13', 'macos-14', 'ubuntu-24.04', 'windows-2022']
25-
python-version: ['3.10', '3.11', '3.12', '3.13']
25+
python-version: ['3.10', '3.11', '3.12', '3.13', 'pypy3.10']
2626
runs-on: ${{ matrix.runs-on }}
2727
steps:
2828
- uses: actions/checkout@v4
2929
- uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}
32-
- run: sudo pipx install --global hatch
33-
name: Install dependencies
34-
- run: hatch test
32+
- run: python -m pip install pytest .
33+
name: Install testing requirements
34+
- run: python -m pytest
35+
name: Test

0 commit comments

Comments
 (0)