Skip to content

Commit 2bd1a64

Browse files
committed
Synchronize the environment
1 parent dbf18bf commit 2bd1a64

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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:
7778

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

8283
- name: Python Tests (.NET Core)
83-
run: python -m pytest --runtime coreclr
84+
run: pytest --runtime coreclr
8485

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

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

0 commit comments

Comments
 (0)