yj
2024-07-25 204169e8cae389613ea35c4ec3a0c89998679e70
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()