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 aae8488 commit 0032928Copy full SHA for 0032928
.github/workflows/test_actions.yml
@@ -34,7 +34,7 @@ jobs:
34
print(f"::error title=Test Failure::The Python implementation does not match. Got {implementation}, expected {expected_implementation}.")
35
sys.exit(1)
36
threading = "free-threading" if sysconfig.get_config_var("Py_GIL_DISABLED") else "GIL"
37
- expected_threading = "free-threading" if "${{ matrix.python-version }}".endswith("t") else "GIL"
+ expected_threading = "free-threading" if "t" in "${{ matrix.python-version }}" else "GIL"
38
if threading != expected_threading:
39
print(f"::error title=Test Failure::The Python threading does not match. Got {threading}, expected {expected_threading}.")
40
0 commit comments