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