yj
2024-07-24 13af5663bd892c6f7a4e35b9761d12f135def81b
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()