-
Couldn't load subscription status.
- Fork 17
Rebased @eestrada 's changes on latest HTMLTestRunner version 3. #4
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
Conversation
Rebased @eestrada 's changes on latest HTMLTestRunner version 3.
HTMLTestRunner.py
Outdated
|
|
||
| row = self.REPORT_CLASS_TMPL % dict( | ||
| style = ne > 0 and 'errorClass' or nf > 0 and 'failClass' or 'passClass', | ||
| style = ne > 0 and 'errorClass' or nf > 0 and 'failClass' or ns and 'skipClass' or 'passClass', |
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.
Should be
ns > 0 and 'skipClass'
|
Can you also update test_HTMLTestRunner.py to reflect this new functionality which is optional and backward compatible? |
add skip testcase and cleanup the imports
|
did a few changes as you suggested. Maybe you can checkup on the conflict and resolve those issues ? |
|
@dark-passenger I just tried to push a commit to squash the conflict, but since it's your repo, I cannot. You'll need to resolve these yourself on your branch. The code itself looks good and there's no physical conflict after your rebase. Therefore it's only a repo tracking issue caused after the rebase. |
|
Closing pull request will resolve the conflict and send a fresh request. |
Conflicts: CHANGELOG.md
|
resolved all conflicts. Should be good to go @dash0002 |
Rebased @eestrada 's changes on latest HTMLTestRunner version 3.
add skip testcase and cleanup the imports
No description provided.