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 af5c329 commit 2d2a91cCopy full SHA for 2d2a91c
pyproject.toml
@@ -77,7 +77,8 @@ flatpak_sdk = "org.gnome.Sdk"
77
78
[tool.briefcase.app.testbed.windows]
79
requires = [
80
- "pythonnet>=3.0.0rc6",
+ # Python.net isn't avaialble for 3.13 yet.
81
+ "pythonnet>=3.0.0rc6; python_version < '3.13'",
82
# Windows doesn't provide the zoneinfo TZ database; use the Python provided one
83
"tzdata",
84
]
tests/test_windows.py
@@ -6,10 +6,13 @@
6
7
import pytest
8
9
+from .test_thirdparty import xfail_if_not_installed
10
+
11
if sys.platform != "win32":
12
pytest.skip("Skipping Windows-only tests", allow_module_level=True)
13
14
15
+@xfail_if_not_installed("pythonnet")
16
def test_pythonnet():
17
"Python.net integration works as expected"
18
# Set up CLR
0 commit comments