yj
2024-07-24 3b84cce1ee43215b9f398148fda19f4b1025856b
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()