yj
2024-07-24 f46d57da7273046690031a386536156210d0fad1
1
2
3
4
5
6
7
8
9
import pytest
import os
 
def run_testcases():
    pytest.main(['-vs', '--html=report/report.html', 'testcase/test_main.py'])
 
 
if __name__ == '__main__':
    run_testcases()