We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b51d7 commit 595c5fbCopy full SHA for 595c5fb
.github/workflows/main.yml
@@ -78,14 +78,14 @@ jobs:
78
79
- name: Python Tests (Mono)
80
if: ${{ matrix.os.category != 'windows' }}
81
- run: pytest --runtime mono
+ run: python -m pytest --runtime mono
82
83
- name: Python Tests (.NET Core)
84
- run: pytest --runtime coreclr
+ run: python -m pytest --runtime coreclr
85
86
- name: Python Tests (.NET Framework)
87
if: ${{ matrix.os.category == 'windows' }}
88
- run: pytest --runtime netfx
+ run: python -m pytest --runtime netfx
89
90
- name: Python tests run from .NET
91
run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
0 commit comments