Skip to content

Pyright checker#157

Merged
BenediktBurger merged 3 commits into
mainfrom
pyright-checker
Jun 23, 2026
Merged

Pyright checker#157
BenediktBurger merged 3 commits into
mainfrom
pyright-checker

Conversation

@BenediktBurger

Copy link
Copy Markdown
Member

No description provided.

@coderabbitai

coderabbitai Bot commented Jun 22, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@BenediktBurger, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 53 minutes and 58 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 01aa2fe3-7d42-4b01-a132-c35450c696b2

📥 Commits

Reviewing files that changed from the base of the PR and between 9c7eb98 and c38f9a9.

📒 Files selected for processing (51)
  • examples/pymeasure_actor.py
  • pyleco/__init__.py
  • pyleco/actors/actor.py
  • pyleco/coordinators/coordinator.py
  • pyleco/coordinators/proxy_server.py
  • pyleco/core/leco_protocols.py
  • pyleco/directors/transparent_director.py
  • pyleco/management/data_logger.py
  • pyleco/management/starter.py
  • pyleco/management/test_tasks/test_task.py
  • pyleco/test.py
  • pyleco/utils/coordinator_utils.py
  • pyleco/utils/message_handler.py
  • pyleco/utils/pipe_handler.py
  • pyleco/utils/qt_listener.py
  • pyleco/utils/rpc_handler.py
  • pyleco/utils/zmq_log_handler.py
  • tests/actors/test_actor.py
  • tests/actors/test_locking_actor.py
  • tests/coordinators/test_coordinator.py
  • tests/coordinators/test_data_coordinator.py
  • tests/coordinators/test_proxy_server.py
  • tests/core/test_internal_protocols.py
  • tests/directors/test_coordinator_director.py
  • tests/directors/test_data_coordinator_director.py
  • tests/directors/test_data_logger_director.py
  • tests/directors/test_director.py
  • tests/directors/test_locking_director.py
  • tests/directors/test_starter_director.py
  • tests/directors/test_transparent_director.py
  • tests/integration_tests/test_data_coordinator_live.py
  • tests/integration_tests/test_multi_node_smoke.py
  • tests/integration_tests/test_proxy_server_live.py
  • tests/integration_tests/test_starter_live.py
  • tests/json_utils/test_json_objects.py
  • tests/json_utils/test_json_parser.py
  • tests/json_utils/test_rpc_server.py
  • tests/management/test_data_logger.py
  • tests/management/test_starter.py
  • tests/test_test.py
  • tests/utils/test_base_communicator.py
  • tests/utils/test_communicator.py
  • tests/utils/test_coordinator_utils.py
  • tests/utils/test_data_publisher.py
  • tests/utils/test_extended_message_handler.py
  • tests/utils/test_listener.py
  • tests/utils/test_message_handler.py
  • tests/utils/test_pipe_handler.py
  • tests/utils/test_qt_listener.py
  • tests/utils/test_rpc_handler.py
  • tests/utils/test_zmq_log_handler.py
📝 Walkthrough

Walkthrough

The PR migrates the static type checker from mypy to Pyright across the entire codebase. CI is updated to replace the mypy job with a code_style job running Ruff and Pyright. pyproject.toml replaces [tool.mypy] with [tool.pyright], and all inline # type: ignore suppression comments across source and test files are updated to targeted # pyright: ignore[reportXxx] directives.

Changes

mypy → Pyright migration

Layer / File(s) Summary
CI and project config: replace mypy with Pyright
.github/workflows/pyleco_CI.yml, pyproject.toml, .gitignore, AGENTS.md, docs/conf.py
CI workflow renames the docs_lint job to docs, removes the Ruff step from docs, and introduces a code_style job with contents: read/checks: write permissions running Ruff and Pyright in editable-install mode. pyproject.toml adds pyright to dev extras and replaces the entire [tool.mypy] block with [tool.pyright] at standard mode targeting Python 3.8. .gitignore tracks .pyright/ instead of mypy cache. AGENTS.md updates developer instructions and docs/conf.py removes the # mypy: ignore-errors file directive.
Source code annotation migration
pyleco/__init__.py, pyleco/actors/actor.py, pyleco/coordinators/coordinator.py, pyleco/coordinators/proxy_server.py, pyleco/core/leco_protocols.py, pyleco/directors/transparent_director.py, pyleco/management/data_logger.py, pyleco/management/starter.py, pyleco/management/test_tasks/test_task.py, pyleco/test.py, pyleco/utils/*
All inline # type: ignore comments in source files are replaced with targeted # pyright: ignore[reportXxx] directives (e.g., reportAttributeAccessIssue, reportAssignmentType, reportIncompatibleVariableOverride). Several previously suppressed locations (e.g., unreachable in sanitize_tasks, override in _listen_setup) have their suppression removed entirely.
Test annotation migration
tests/actors/*, tests/coordinators/*, tests/directors/*, tests/integration_tests/*, tests/json_utils/*, tests/management/*, tests/test_test.py, tests/utils/*
All # type: ignore comments in test files are replaced with targeted # pyright: ignore[reportXxx] directives. # type: ignore[method-assign] suppressions on MagicMock() assignments are removed entirely. One behavioral change: test_no_readout_queued now passes waiting_time=0 explicitly instead of relying on a default.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

  • pymeasure/pyleco#151: Modifies the same .github/workflows/pyleco_CI.yml file, specifically the Ruff linting job/step configuration that this PR restructures.
  • pymeasure/pyleco#152: Touches Actor._disconnect and Coordinator.handle_json_commands type annotations that this PR also updates with Pyright-specific suppression directives.

Poem

🐇 Farewell, old mypy with your strict type: ignore ways,
Pyright hops in to guide our typing days!
With reportArgumentType and reportReturnType too,
Each suppression now points to something true.
The rabbit checks the CI, sees green lights glow —
From [tool.mypy] to [tool.pyright] we go! ✨

🚥 Pre-merge checks | ✅ 2 | ❌ 3

❌ Failed checks (2 warnings, 1 inconclusive)

Check name Status Explanation Resolution
Description check ⚠️ Warning No pull request description was provided by the author, making it impossible to assess whether the intent and rationale for these substantial tooling changes are documented. Add a comprehensive description explaining why mypy is being replaced with Pyright, the implications of this migration, and any breaking changes or migration steps required for users or contributors.
Docstring Coverage ⚠️ Warning Docstring coverage is 10.92% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Title check ❓ Inconclusive The title 'Pyright checker' is vague and generic, failing to clearly describe the main change from replacing mypy with Pyright across the codebase. Revise the title to more clearly reflect the main change, e.g., 'Replace mypy type checking with Pyright' or 'Migrate static analysis from mypy to Pyright'.
✅ Passed checks (2 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch pyright-checker

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@codecov

codecov Bot commented Jun 22, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 86.11111% with 5 lines in your changes missing coverage. Please review.
✅ Project coverage is 91.35%. Comparing base (b06c748) to head (c38f9a9).

Files with missing lines Patch % Lines
pyleco/utils/qt_listener.py 0.00% 2 Missing ⚠️
pyleco/management/data_logger.py 88.88% 1 Missing ⚠️
pyleco/utils/coordinator_utils.py 50.00% 1 Missing ⚠️
pyleco/utils/zmq_log_handler.py 66.66% 1 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff           @@
##             main     #157   +/-   ##
=======================================
  Coverage   91.35%   91.35%           
=======================================
  Files          41       41           
  Lines        3437     3437           
  Branches      342      342           
=======================================
  Hits         3140     3140           
  Misses        252      252           
  Partials       45       45           
Flag Coverage Δ
unittests 91.35% <86.11%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (3)
tests/directors/test_coordinator_director.py (1)

37-39: 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Fix misleading variable name in coordinator_director fixture.

The local variable is named data_logger_director in a fixture called coordinator_director. This appears to be a copy-paste artifact from test_data_logger_director.py. While the code is functional, the confusing name violates readability and maintenance standards.

🔧 Proposed fix
 `@pytest.fixture`
 def coordinator_director():
-    data_logger_director = FakeCoordinatorDirector(remote_class=Coordinator)  # pyright: ignore[reportArgumentType]
-    return data_logger_director
+    coordinator_director = FakeCoordinatorDirector(remote_class=Coordinator)  # pyright: ignore[reportArgumentType]
+    return coordinator_director

Or for better clarity:

 `@pytest.fixture`
 def coordinator_director():
-    data_logger_director = FakeCoordinatorDirector(remote_class=Coordinator)  # pyright: ignore[reportArgumentType]
-    return data_logger_director
+    director = FakeCoordinatorDirector(remote_class=Coordinator)  # pyright: ignore[reportArgumentType]
+    return director
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/directors/test_coordinator_director.py` around lines 37 - 39, The local
variable in the coordinator_director fixture is incorrectly named
data_logger_director, which is a misleading copy-paste artifact from another
test file. Rename the variable data_logger_director to coordinator_director (or
a similar name that clearly indicates it holds a coordinator director instance)
to match the fixture name and improve code clarity. This change should be made
in the fixture function where FakeCoordinatorDirector is instantiated.
tests/directors/test_locking_director.py (1)

37-39: 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Local variable name does not match function name.

The fixture locking_director() defines a local variable named data_logger_director (line 38), which appears to be copy-pasted from test_data_logger_director.py. Rename the variable to locking_director for consistency and clarity.

🔧 Proposed fix
 def locking_director() -> LockingDirector:
-    data_logger_director = FakeLockingDirector(remote_class=LockingActor)  # pyright: ignore[reportArgumentType]
-    return data_logger_director
+    locking_director = FakeLockingDirector(remote_class=LockingActor)  # pyright: ignore[reportArgumentType]
+    return locking_director
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/directors/test_locking_director.py` around lines 37 - 39, In the
locking_director fixture function, rename the local variable
data_logger_director to locking_director on line 38 to match the function name
and improve code clarity. Update the variable reference in the return statement
accordingly to use the new variable name instead of data_logger_director.
tests/directors/test_starter_director.py (1)

37-39: 🧹 Nitpick | 🔵 Trivial | ⚡ Quick win

Local variable name does not match function name.

The fixture starter_director() defines a local variable named data_logger_director (line 38), which appears to be copy-pasted from test_data_logger_director.py. Rename the variable to starter_director for consistency and clarity.

🔧 Proposed fix
 def starter_director() -> StarterDirector:
-    data_logger_director = FakeStarterDirector(remote_class=Starter)  # pyright: ignore[reportArgumentType]
-    return data_logger_director
+    starter_director = FakeStarterDirector(remote_class=Starter)  # pyright: ignore[reportArgumentType]
+    return starter_director
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/directors/test_starter_director.py` around lines 37 - 39, In the
starter_director fixture function, rename the local variable from
data_logger_director to starter_director to match the fixture name and improve
code clarity. The variable is assigned the FakeStarterDirector instance and is
the return value of the fixture, so using a consistent name will make the code
more maintainable and avoid confusion from what appears to be a copy-paste error
from another test file.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/pyleco_CI.yml:
- Around line 68-73: Replace the GitHub Actions references from tag-based
versions to immutable full commit SHAs to reduce supply-chain risk. For the
astral-sh/ruff-action currently using `@v4.0.0`, replace the version tag with its
corresponding full commit SHA. Similarly, for the jakebailey/pyright-action
currently using `@v2`, replace the version tag with its corresponding full commit
SHA. This ensures the workflow uses specific, immutable commits rather than
mutable tag references.
- Line 9: The docs job in the workflow file currently relies on default token
permissions instead of explicitly defining required permissions, which violates
least-privilege security practices. Add an explicit permissions block to the
docs job that specifies only the minimal permissions needed for the job to
function (typically contents: read for accessing the repository). This ensures
the workflow adheres to hardened CI policy by explicitly declaring what
permissions are necessary rather than inheriting potentially overly broad
defaults.

In `@tests/utils/test_message_handler.py`:
- Around line 686-687: The Pyright suppression code on the line with the
`test_class.payload_in = additional_payload` assignment is using the wrong error
type code. This is a type assignment incompatibility issue (the assignment is
trying to assign a `list[bytes] | None` value to an attribute typed as
`list[bytes]`), not an attribute access issue. Replace the current suppression
`# pyright: ignore[reportAttributeAccessIssue]` with `# pyright:
ignore[reportAssignmentType]` to correctly suppress the actual type mismatch
warning.

---

Nitpick comments:
In `@tests/directors/test_coordinator_director.py`:
- Around line 37-39: The local variable in the coordinator_director fixture is
incorrectly named data_logger_director, which is a misleading copy-paste
artifact from another test file. Rename the variable data_logger_director to
coordinator_director (or a similar name that clearly indicates it holds a
coordinator director instance) to match the fixture name and improve code
clarity. This change should be made in the fixture function where
FakeCoordinatorDirector is instantiated.

In `@tests/directors/test_locking_director.py`:
- Around line 37-39: In the locking_director fixture function, rename the local
variable data_logger_director to locking_director on line 38 to match the
function name and improve code clarity. Update the variable reference in the
return statement accordingly to use the new variable name instead of
data_logger_director.

In `@tests/directors/test_starter_director.py`:
- Around line 37-39: In the starter_director fixture function, rename the local
variable from data_logger_director to starter_director to match the fixture name
and improve code clarity. The variable is assigned the FakeStarterDirector
instance and is the return value of the fixture, so using a consistent name will
make the code more maintainable and avoid confusion from what appears to be a
copy-paste error from another test file.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 6f5e28fd-339e-47a0-b7dc-0b2fd4b1d7fb

📥 Commits

Reviewing files that changed from the base of the PR and between b06c748 and c63759e.

📒 Files selected for processing (55)
  • .github/workflows/pyleco_CI.yml
  • .gitignore
  • AGENTS.md
  • docs/conf.py
  • pyleco/__init__.py
  • pyleco/actors/actor.py
  • pyleco/coordinators/coordinator.py
  • pyleco/coordinators/proxy_server.py
  • pyleco/core/leco_protocols.py
  • pyleco/directors/transparent_director.py
  • pyleco/management/data_logger.py
  • pyleco/management/starter.py
  • pyleco/management/test_tasks/test_task.py
  • pyleco/test.py
  • pyleco/utils/coordinator_utils.py
  • pyleco/utils/message_handler.py
  • pyleco/utils/pipe_handler.py
  • pyleco/utils/qt_listener.py
  • pyleco/utils/rpc_handler.py
  • pyleco/utils/zmq_log_handler.py
  • pyproject.toml
  • tests/actors/test_actor.py
  • tests/actors/test_locking_actor.py
  • tests/coordinators/test_coordinator.py
  • tests/coordinators/test_data_coordinator.py
  • tests/coordinators/test_proxy_server.py
  • tests/core/test_internal_protocols.py
  • tests/directors/test_coordinator_director.py
  • tests/directors/test_data_coordinator_director.py
  • tests/directors/test_data_logger_director.py
  • tests/directors/test_director.py
  • tests/directors/test_locking_director.py
  • tests/directors/test_starter_director.py
  • tests/directors/test_transparent_director.py
  • tests/integration_tests/test_data_coordinator_live.py
  • tests/integration_tests/test_multi_node_smoke.py
  • tests/integration_tests/test_proxy_server_live.py
  • tests/integration_tests/test_starter_live.py
  • tests/json_utils/test_json_objects.py
  • tests/json_utils/test_json_parser.py
  • tests/json_utils/test_rpc_server.py
  • tests/management/test_data_logger.py
  • tests/management/test_starter.py
  • tests/test_test.py
  • tests/utils/test_base_communicator.py
  • tests/utils/test_communicator.py
  • tests/utils/test_coordinator_utils.py
  • tests/utils/test_data_publisher.py
  • tests/utils/test_extended_message_handler.py
  • tests/utils/test_listener.py
  • tests/utils/test_message_handler.py
  • tests/utils/test_pipe_handler.py
  • tests/utils/test_qt_listener.py
  • tests/utils/test_rpc_handler.py
  • tests/utils/test_zmq_log_handler.py
💤 Files with no reviewable changes (1)
  • docs/conf.py

Comment thread .github/workflows/pyleco_CI.yml
Comment thread .github/workflows/pyleco_CI.yml
Comment thread tests/utils/test_message_handler.py Outdated
@BenediktBurger
BenediktBurger force-pushed the pyright-checker branch 3 times, most recently from b06e846 to 4e05c62 Compare June 22, 2026 16:41

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/pyleco_CI.yml:
- Line 57: The actions/setup-python action is pinned to a mutable version tag
`@v6` on line 57, which poses a supply chain risk because the tag can point to
different commits over time. Replace the mutable version tag `@v6` with an
immutable commit SHA by looking up the specific commit hash for the desired
release version (such as v6.2.0) from the GitHub actions/setup-python releases
page, then update the action reference from actions/setup-python@v6 to
actions/setup-python@<commit-sha> to ensure consistent and reproducible builds.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 682bf92c-9cfa-42ec-a8b0-2be9efa13fa3

📥 Commits

Reviewing files that changed from the base of the PR and between c63759e and 4e05c62.

📒 Files selected for processing (3)
  • .github/workflows/pyleco_CI.yml
  • pyleco/management/data_logger.py
  • pyleco/utils/qt_listener.py
✅ Files skipped from review due to trivial changes (2)
  • pyleco/utils/qt_listener.py
  • pyleco/management/data_logger.py

Comment thread .github/workflows/pyleco_CI.yml

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/pyleco_CI.yml:
- Around line 57-74: The workflow file uses mutable version tags for GitHub
Actions instead of immutable commit SHAs, creating security vulnerabilities.
Replace the three action references with their full commit hashes: change
setup-python@v6 to its corresponding commit SHA from the actions/setup-python
releases, change ruff-action@v4.0.0 to its commit SHA from astral-sh/ruff-action
releases, and change pyright-action@v2 to its commit SHA from
jakebailey/pyright-action releases. Use the format
actions/owner/action@<full-40-character-commit-sha> for each action to ensure
they are pinned to immutable commit references.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 1f70df33-2dfd-4644-8e7a-9cda84d56d68

📥 Commits

Reviewing files that changed from the base of the PR and between 4e05c62 and 9c7eb98.

📒 Files selected for processing (55)
  • .github/workflows/pyleco_CI.yml
  • .gitignore
  • AGENTS.md
  • docs/conf.py
  • pyleco/__init__.py
  • pyleco/actors/actor.py
  • pyleco/coordinators/coordinator.py
  • pyleco/coordinators/proxy_server.py
  • pyleco/core/leco_protocols.py
  • pyleco/directors/transparent_director.py
  • pyleco/management/data_logger.py
  • pyleco/management/starter.py
  • pyleco/management/test_tasks/test_task.py
  • pyleco/test.py
  • pyleco/utils/coordinator_utils.py
  • pyleco/utils/message_handler.py
  • pyleco/utils/pipe_handler.py
  • pyleco/utils/qt_listener.py
  • pyleco/utils/rpc_handler.py
  • pyleco/utils/zmq_log_handler.py
  • pyproject.toml
  • tests/actors/test_actor.py
  • tests/actors/test_locking_actor.py
  • tests/coordinators/test_coordinator.py
  • tests/coordinators/test_data_coordinator.py
  • tests/coordinators/test_proxy_server.py
  • tests/core/test_internal_protocols.py
  • tests/directors/test_coordinator_director.py
  • tests/directors/test_data_coordinator_director.py
  • tests/directors/test_data_logger_director.py
  • tests/directors/test_director.py
  • tests/directors/test_locking_director.py
  • tests/directors/test_starter_director.py
  • tests/directors/test_transparent_director.py
  • tests/integration_tests/test_data_coordinator_live.py
  • tests/integration_tests/test_multi_node_smoke.py
  • tests/integration_tests/test_proxy_server_live.py
  • tests/integration_tests/test_starter_live.py
  • tests/json_utils/test_json_objects.py
  • tests/json_utils/test_json_parser.py
  • tests/json_utils/test_rpc_server.py
  • tests/management/test_data_logger.py
  • tests/management/test_starter.py
  • tests/test_test.py
  • tests/utils/test_base_communicator.py
  • tests/utils/test_communicator.py
  • tests/utils/test_coordinator_utils.py
  • tests/utils/test_data_publisher.py
  • tests/utils/test_extended_message_handler.py
  • tests/utils/test_listener.py
  • tests/utils/test_message_handler.py
  • tests/utils/test_pipe_handler.py
  • tests/utils/test_qt_listener.py
  • tests/utils/test_rpc_handler.py
  • tests/utils/test_zmq_log_handler.py
💤 Files with no reviewable changes (1)
  • docs/conf.py
✅ Files skipped from review due to trivial changes (47)
  • tests/integration_tests/test_starter_live.py
  • tests/directors/test_coordinator_director.py
  • tests/utils/test_listener.py
  • tests/directors/test_locking_director.py
  • tests/directors/test_transparent_director.py
  • tests/integration_tests/test_data_coordinator_live.py
  • tests/core/test_internal_protocols.py
  • tests/directors/test_data_coordinator_director.py
  • tests/integration_tests/test_proxy_server_live.py
  • tests/directors/test_starter_director.py
  • pyleco/init.py
  • tests/utils/test_rpc_handler.py
  • pyleco/coordinators/coordinator.py
  • tests/utils/test_zmq_log_handler.py
  • AGENTS.md
  • tests/directors/test_data_logger_director.py
  • pyleco/management/starter.py
  • pyleco/management/test_tasks/test_task.py
  • tests/json_utils/test_json_parser.py
  • pyleco/coordinators/proxy_server.py
  • pyleco/utils/zmq_log_handler.py
  • tests/utils/test_data_publisher.py
  • pyleco/test.py
  • tests/integration_tests/test_multi_node_smoke.py
  • tests/coordinators/test_proxy_server.py
  • pyleco/utils/coordinator_utils.py
  • pyleco/directors/transparent_director.py
  • pyleco/utils/qt_listener.py
  • tests/test_test.py
  • pyleco/utils/message_handler.py
  • pyleco/core/leco_protocols.py
  • pyleco/utils/pipe_handler.py
  • tests/coordinators/test_data_coordinator.py
  • pyleco/utils/rpc_handler.py
  • .gitignore
  • pyleco/actors/actor.py
  • tests/actors/test_locking_actor.py
  • tests/utils/test_qt_listener.py
  • tests/json_utils/test_json_objects.py
  • tests/management/test_starter.py
  • tests/utils/test_pipe_handler.py
  • tests/utils/test_coordinator_utils.py
  • tests/directors/test_director.py
  • tests/json_utils/test_rpc_server.py
  • tests/utils/test_base_communicator.py
  • tests/utils/test_message_handler.py
  • tests/coordinators/test_coordinator.py
🚧 Files skipped from review as they are similar to previous changes (3)
  • pyproject.toml
  • tests/actors/test_actor.py
  • tests/utils/test_communicator.py

Comment thread .github/workflows/pyleco_CI.yml
@BenediktBurger
BenediktBurger merged commit bdeb801 into main Jun 23, 2026
58 of 73 checks passed
@BenediktBurger
BenediktBurger deleted the pyright-checker branch June 23, 2026 07:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant