Skip to content

Commit b22f5c1

Browse files
committed
ci: use pytest
as python3 setup.py test is deprecated and will be removed, use pytest instead Signed-off-by: Fin Maaß <[email protected]>
1 parent ff23e73 commit b22f5c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Install Python dependencies
2626
run: |
27-
python3 -m pip install setuptools requests pexpect meson
27+
python3 -m pip install setuptools requests pexpect meson pytest
2828
2929
# Install (n)Migen / LiteX / Cores
3030
- name: Install LiteX
@@ -38,4 +38,4 @@ jobs:
3838

3939
# Test
4040
- name: Run Tests
41-
run: python3 setup.py test
41+
run: python3 -m pytest -v

0 commit comments

Comments
 (0)