mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
fix: resolve all ruff linting errors
Fixed 42 linting errors across codebase: - Auto-fixed 35 import sorting issues (I001) - Added unused imports to __all__ in execution/__init__.py - Removed unused variable assignments (F841) - Updated pyproject.toml to use [tool.ruff.lint] section All ruff checks now pass successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -91,13 +91,11 @@ class TestPytestPluginIntegration:
|
||||
|
||||
def test_pytest_markers_registered(self):
|
||||
"""Test that custom markers are registered"""
|
||||
# Get all registered markers
|
||||
markers = {marker.name for marker in pytest.mark.__dict__.values() if hasattr(marker, "name")}
|
||||
|
||||
# Note: This test might need adjustment based on pytest version
|
||||
# The important thing is that our custom markers exist
|
||||
# confidence_check, self_check, reflexion, complexity
|
||||
# These are registered in pytest_plugin.py
|
||||
pass
|
||||
|
||||
|
||||
class TestPytestPluginHooks:
|
||||
|
||||
Reference in New Issue
Block a user