File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,16 +76,16 @@ jobs:
76
76
77
77
- name : Python Tests (Mono)
78
78
if : ${{ matrix.os.category != 'windows' }}
79
- run : uv run pytest --runtime mono
79
+ run : uv run python -m pytest --runtime mono
80
80
81
81
# TODO: Run these tests on Windows x86
82
82
- name : Python Tests (.NET Core)
83
83
if : ${{ matrix.os.platform == 'x64' }}
84
- run : uv run pytest --runtime coreclr
84
+ run : uv run python -m pytest --runtime coreclr
85
85
86
86
- name : Python Tests (.NET Framework)
87
87
if : ${{ matrix.os.category == 'windows' }}
88
- run : uv run pytest --runtime netfx
88
+ run : uv run python -m pytest --runtime netfx
89
89
90
90
- name : Python tests run from .NET
91
91
run : uv run dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
You can’t perform that action at this time.
0 commit comments