阳洁
2023-07-28 8c9395d6a0e07ea64a7ed88a466c5befb83178e3
1
2
3
4
5
6
7
8
9
10
11
12
import time
 
import pytest
import pytest_html
 
 
def run_testcases():
    pytest.main(['-vs', '--html=report/report.html', 'testcase'])
 
 
if __name__ == '__main__':
    run_testcases()