🌐 AI搜索 & 代理 主页
Skip to content

Commit 595c5fb

Browse files
committed
Use python -m pytest, path seemingly not properly updated
1 parent e7b51d7 commit 595c5fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ jobs:
7878

7979
- name: Python Tests (Mono)
8080
if: ${{ matrix.os.category != 'windows' }}
81-
run: pytest --runtime mono
81+
run: python -m pytest --runtime mono
8282

8383
- name: Python Tests (.NET Core)
84-
run: pytest --runtime coreclr
84+
run: python -m pytest --runtime coreclr
8585

8686
- name: Python Tests (.NET Framework)
8787
if: ${{ matrix.os.category == 'windows' }}
88-
run: pytest --runtime netfx
88+
run: python -m pytest --runtime netfx
8989

9090
- name: Python tests run from .NET
9191
run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/

0 commit comments

Comments
 (0)