Enhance project view decorations and add 100% test coverage #104
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR significantly enhances the project view decoration feature and adds comprehensive test coverage.
Enhanced Project View Decorations
The project view now shows richer information about virtual environments beyond just the Python version:
3.14.2include-system-site-packagesis enableduv@0.9.21)Example:
.venv [3.14.2 - CPython - uv@0.9.21]Customizable Settings
A new settings page (Settings → PyVenv Manage) allows full customization:
[and])-)Empty fields are automatically omitted from the decoration.
Test Coverage
Comprehensive unit tests achieving 100% line coverage with CI enforcement via Kover's
koverVerifytask.UI Test Fixes
Updated UI tests for compatibility with PyCharm 2025.1 and RemoteRobot.
CI Improvements
Simplified verification to only run against Python-bundled IDEs (PyCharm Community and Professional). This plugin requires
com.intellij.modules.pythonas a mandatory dependency, and Plugin Verifier checks against clean IDE distributions where IDEA doesn't bundle Python. Previously verification against IntelliJ IDEA, GoLand, CLion, and RustRover would fail because these IDEs require the Python plugin to be installed separately.Other Changes
require-restart="false"to plugin.xml for dynamic loading support