10 lines
345 B
Python
10 lines
345 B
Python
"""Explicitly verify test_alert_stats_empty behavior"""
|
|
import pytest, sys
|
|
sys.path.insert(0, '/root/cma-management/backend')
|
|
|
|
# Run the test and intercept its output
|
|
pytest.main(["-v", "--tb=long", "-s",
|
|
"tests/test_dashboard.py::TestDashboard::test_alert_stats_empty",
|
|
"tests/test_dashboard.py::TestDashboard::test_summary_empty",
|
|
])
|