8000 Skip embed tests on Python 3.13 for now · pythonnet/pythonnet@60a057f · GitHub
[go: up one dir, main page]

Skip to content

Commit 60a057f

Browse files
committed
Skip embed tests on Python 3.13 for now
Verified them locally, but there is an issue with the Github workflow image that can hopefully be resolved later by using a full venv instead of relying on the system environment.
1 parent 1920b19 commit 60a057f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONHOME=$(python -c 'import sys; print(sys.prefix)')"
7878
7979
- name: Embedding tests
80+
if: ${{ matrix.python != '3.13' }}
8081
run: dotnet test --runtime any-${{ matrix.os.platform }} --logger "console;verbosity=detailed" src/embed_tests/
8182
env:
8283
MONO_THREADS_SUSPEND: preemptive # https://github.com/mono/mono/issues/21466
@@ -95,6 +96,7 @@ jobs:
9596
run: pytest --runtime netfx
9697

9798
- name: Python tests run from .NET
99+
if: ${{ matrix.python != '3.13' }}
98100
run: dotnet test --runtime any-${{ matrix.os.platform }} src/python_tests_runner/
99101

100102
- name: Perf tests

0 commit comments

Comments
 (0)
0