-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何只生成一个测试报告呢 #2
Comments
Fellow this example in Readme.md: example_tests = TestLoader().loadTestsFromTestCase(ExampleTests) suite = TestSuite([example_tests, example2_tests]) |
I have a similar issue I have three one test suite with three different classes which contains several test cases each of these classes. One Test Suite is exported to the HTML report: login_test_loader = unittest.TestLoader().loadTestsFromTestCase(login_test.Login) all_tests_suite = unittest.TestSuite([login_test_loader,sign_on_test_loader,without_funct_loader,register_test_loader]) |
Hey I have a solution to this issue. However I am new to github. How can i post a review for the change? |
you need to make a fork and then a pull request. It will depend on the owner of this repository to allow you to introduce changes in the current sourcode. |
一个testSuite加载了来自不同测试类的多个测试方法,测试完毕后每个测试类都会生成一次测试报告。
暂时不知道如何控制合并测试数据并生成一份统一的报告。
The text was updated successfully, but these errors were encountered: