Synchronize the environment · pythonnet/pythonnet@2bd1a64

@@ -58,6 +58,7 @@ jobs:

5858

- name: Set up Python ${{ matrix.python }}

5959

uses: astral-sh/setup-uv@v6

6060

with:

61+

architecture: ${{ matrix.os.platform }}

6162

python-version: ${{ matrix.python }}

6263

activate-environment: true

6364

enable-cache: true

@@ -77,14 +78,14 @@ jobs:

77787879

- name: Python Tests (Mono)

7980

if: ${{ 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)

8687

if: ${{ matrix.os.category == 'windows' }}

87-

run: python -m pytest --runtime netfx

88+

run: pytest --runtime netfx

88898990

- name: Python tests run from .NET

9091

run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/