Skip to content

Commit b8a0387

Browse files
MementoRCclaude
andcommitted
fix: resolve ruff import sorting violations in test files
Auto-fix import ordering issues introduced by psycopg import additions: - Sort imports in e2e and integration test files according to ruff I001 rules - Maintain functionality while ensuring code quality standards This resolves the Code Quality job failures and restores lint compliance. Infrastructure fix complete: All exit code 127 errors eliminated ✅ Test reliability improved: Database tests skip gracefully ✅ Code quality maintained: Import sorting compliant ✅ 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 91d29e2 commit b8a0387

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/e2e/test_e2e_basic_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import tempfile
44
import time
55

6-
import pytest
76
import psycopg
7+
import pytest
88

99
from src.uckn.core.organisms.knowledge_manager import KnowledgeManager
1010

tests/e2e/test_e2e_knowledge_lifecycle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import tempfile
44
import time
55

6-
import pytest
76
import psycopg
7+
import pytest
88

99
from src.uckn.core.organisms.knowledge_manager import KnowledgeManager
1010

tests/integration/test_centralized_architecture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from datetime import datetime
55
from pathlib import Path
66

7-
import pytest
87
import psycopg
8+
import pytest
99

1010
from src.uckn.core.organisms.knowledge_manager import KnowledgeManager
1111
from src.uckn.storage.chromadb_connector import ChromaDBConnector

0 commit comments

Comments
 (0)