* fix dependencies uv.lock * refactor test markers for clarity * refactor: clean up imports and remove unused files * refactor: remove unused agent files and clean up market API instructions * refactor: enhance wrapper initialization with keyword arguments and clean up tests * refactor: remove PublicBinanceAgent * refactor: aggregator - simplified MarketDataAggregator and related models to functions * refactor: update README and .env.example to reflect the latest changes to the project * refactor: simplify product info and price creation in YFinanceWrapper * refactor: remove get_all_products method from market API wrappers and update documentation * fix: environment variable assertions * refactor: remove status attribute from ProductInfo and update related methods to use timestamp_ms * feat: implement aggregate_history_prices function to calculate hourly price averages * refactor: update docker-compose and app.py for improved environment variable handling and compatibility * feat: add detailed market instructions and improve error handling in price aggregation methods * feat: add aggregated news retrieval methods for top headlines and latest news * refactor: improve error messages in WrapperHandler for better clarity * fix: correct quote currency extraction in create_product_info and remove debug prints from tests
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
"""
|
|
Configurazione pytest per i test del progetto upo-appAI.
|
|
"""
|
|
|
|
import pytest
|
|
from dotenv import load_dotenv
|
|
|
|
# Carica le variabili d'ambiente per tutti i test
|
|
load_dotenv()
|
|
|
|
|
|
def pytest_configure(config:pytest.Config):
|
|
"""Configurazione pytest con marker personalizzati"""
|
|
|
|
markers = [
|
|
("slow", "marks tests as slow (deselect with '-m \"not slow\"')"),
|
|
("limited", "marks tests that have limited execution due to API constraints"),
|
|
|
|
("api", "marks tests that require API access"),
|
|
("market", "marks tests that use market data"),
|
|
("news", "marks tests that use news"),
|
|
("social", "marks tests that use social media"),
|
|
("wrapper", "marks tests for wrapper handler"),
|
|
|
|
("tools", "marks tests for tools"),
|
|
("aggregator", "marks tests for market data aggregator"),
|
|
|
|
("gemini", "marks tests that use Gemini model"),
|
|
("ollama_gpt", "marks tests that use Ollama GPT model"),
|
|
("ollama_qwen", "marks tests that use Ollama Qwen model"),
|
|
]
|
|
for marker in markers:
|
|
line = f"{marker[0]}: {marker[1]}"
|
|
config.addinivalue_line("markers", line)
|
|
|
|
def pytest_collection_modifyitems(config, items):
|
|
"""Modifica automaticamente degli item di test rimovendoli"""
|
|
# Rimuovo i test "limited" e "slow" se non richiesti esplicitamente
|
|
mark_to_remove = ['limited', 'slow']
|
|
for mark in mark_to_remove:
|
|
markexpr = getattr(config.option, "markexpr", None)
|
|
if markexpr and mark in markexpr.lower():
|
|
continue
|
|
|
|
new_mark = (f"({markexpr}) and " if markexpr else "") + f"not {mark}"
|
|
setattr(config.option, "markexpr", new_mark)
|