Synchronize the environment · pythonnet/pythonnet@2bd1a64
@@ -58,6 +58,7 @@ jobs:
5858 - name: Set up Python ${{ matrix.python }}
5959uses: astral-sh/setup-uv@v6
6060with:
61+architecture: ${{ matrix.os.platform }}
6162python-version: ${{ matrix.python }}
6263activate-environment: true
6364enable-cache: true
@@ -77,14 +78,14 @@ jobs:
77787879 - name: Python Tests (Mono)
7980if: ${{ matrix.os.category != 'windows' }}
80-run: python -m pytest --runtime mono
81+run: pytest --runtime mono
81828283 - name: Python Tests (.NET Core)
83-run: python -m pytest --runtime coreclr
84+run: pytest --runtime coreclr
84858586 - name: Python Tests (.NET Framework)
8687if: ${{ matrix.os.category == 'windows' }}
87-run: python -m pytest --runtime netfx
88+run: pytest --runtime netfx
88898990 - name: Python tests run from .NET
9091run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/