10 lines
343 B
Python
10 lines
343 B
Python
"""Run the exact same test sequence without any patches"""
|
|
import os, sys
|
|
sys.path.insert(0, '/root/cma-management/backend')
|
|
|
|
import pytest
|
|
exit_code = pytest.main(["-v", "--tb=short",
|
|
"tests/test_dashboard.py::TestDashboard::test_summary_empty",
|
|
"tests/test_dashboard.py::TestDashboard::test_summary_with_data"])
|
|
sys.exit(exit_code)
|