You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fixes a critical error where DiscoveredFile.file_hash was incorrectly called as a method, when it is a property. This stemmed from the use of `computed_field` without a property decorator, which the type checker interpreted as a method. Added property decorator to clarify property status.
* Added rich markup escapes for error messages referencing codeweaver optional packages.
* Minor type improvements in connection pooling modules.
---------
Signed-off-by: Adam Poulemanos <[email protected]>
Co-authored-by: Claude <[email protected]>
Co-authored-by: Copilot <[email protected]>
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/_reusable-test.yml
+10-11Lines changed: 10 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -6,27 +6,26 @@
6
6
name: Reusable Test Workflow
7
7
permissions:
8
8
contents: read
9
-
10
9
on:
11
10
workflow_call:
12
11
inputs:
13
12
python-versions:
14
-
description: 'JSON array of Python versions to test (e.g., ["3.12", "3.13"]). Experimental versions (3.13t, 3.14t) are always included via matrix.include.'
13
+
description: JSON array of Python versions to test (e.g., ["3.12", "3.13"]). Experimental versions (3.13t, 3.14t) are always included via matrix.include.
15
14
required: false
16
15
type: string
17
16
default: '["3.12", "3.13", "3.14"]'
18
17
test-markers:
19
-
description: "Pytest markers for test filtering"
18
+
description: Pytest markers for test filtering
20
19
required: false
21
20
type: string
22
-
default: "not docker and not qdrant and not dev_only and not skip_ci and not network and not external_api"
21
+
default: not docker and not qdrant and not dev_only and not skip_ci and not network and not external_api
0 commit comments