test: add agent test coverage and standardize test suite (#2051)

- Add 104 comprehensive tests for agent system
- Integrate agent tests into CI/CD pipeline
- Standardize tests with @pytest.mark.unit markers
- Fix cross-platform path compatibility
- Clean up unused imports and dependencies
This commit is contained in:
Siddhant Rai
2025-10-13 17:13:35 +05:30
committed by GitHub
parent 1805292528
commit d6c49bdbf0
24 changed files with 2775 additions and 501 deletions

View File

@@ -1,12 +1,12 @@
from flask import Flask
import pytest
from application.api.answer import answer
from application.api.internal.routes import internal
from application.api.user.routes import user
from application.core.settings import settings
from flask import Flask
@pytest.mark.unit
def test_app_config():
app = Flask(__name__)
app.register_blueprint(user)