-
Notifications
You must be signed in to change notification settings - Fork 325
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
Solution of #213. Print test case detail with its status. #222
base: master
Are you sure you want to change the base?
Conversation
We can keep this part optional also. |
Can one of the admins verify this patch? |
Hi, is there anyone, who can look at this? I have just started with pyresttest and this improvement will save a lot of time. Thank you. |
if single_test_case['status'] == 'Passed': | ||
print('\033[90m' + sub_test_case + '\033[0m') | ||
else: | ||
print('\033[90m' + sub_test_case + '\033[0m') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Support skip_term_colors options will be great.
- Change failed case color code to
\033[92m
will be great.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for enhance it
According to netjunki's JUnit patch, I think that code will beter I looking forward to this great breach, hope it can be merge. |
This pull request contains code for print the test case detail with its status. You will see the output with each test case instead of test case group.