Fixed priority linting errors to improve code quality: Critical Fixes: - F821 (2 errors): Fixed undefined name 'original_result' in config_enhancer.py - UP035 (2 errors): Removed deprecated typing.Dict and typing.Type imports - F401 (27 errors): Removed unused imports and added noqa for availability checks - E722 (19 errors): Replaced bare 'except:' with 'except Exception:' Code Quality Improvements: - SIM201 (4 errors): Simplified 'not x == y' to 'x != y' - SIM118 (2 errors): Removed unnecessary .keys() in dict iterations - E741 (4 errors): Renamed ambiguous variable 'l' to 'line' - I001 (1 error): Sorted imports in test_bootstrap_skill.py All modified areas tested and passing: - test_scraper_features.py: 42 passed - test_integration.py: 51 passed - test_architecture_scenarios.py: 11 passed - test_real_world_fastmcp.py: 19 passed (1 skipped) Remaining linting errors: 249 (mostly code style suggestions like ARG002, F841, SIM102) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
32 lines
875 B
Python
32 lines
875 B
Python
"""
|
|
Pytest configuration for tests.
|
|
|
|
Configures anyio to only use asyncio backend (not trio).
|
|
Checks that the skill_seekers package is installed before running tests.
|
|
"""
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
|
|
def pytest_configure(config):
|
|
"""Check if package is installed before running tests."""
|
|
try:
|
|
import skill_seekers # noqa: F401
|
|
except ModuleNotFoundError:
|
|
print("\n" + "=" * 70)
|
|
print("ERROR: skill_seekers package not installed")
|
|
print("=" * 70)
|
|
print("\nPlease install the package in editable mode first:")
|
|
print(" pip install -e .")
|
|
print("\nOr activate your virtual environment if you already installed it.")
|
|
print("=" * 70 + "\n")
|
|
sys.exit(1)
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def anyio_backend():
|
|
"""Override anyio backend to only use asyncio (not trio)."""
|
|
return "asyncio"
|