GCI: Update tasks - #215
Conversation
| if not isinstance(old_value, set): | ||
| print(f'wtf {key} {type(value)}') | ||
| if old_value > value: | ||
| print(f'{key}: {sorted(old_value)} - {sorted(old_value - value)}') |
There was a problem hiding this comment.
E501 line too long (82 > 80 characters)
Origin: PycodestyleBear (E501), Section: all.python.default.
| if old_value > value: | ||
| print(f'{key}: {sorted(old_value)} - {sorted(old_value - value)}') | ||
| elif value > old_value: | ||
| print(f'{key}: {sorted(old_value)} + {sorted(value - old_value)}') |
There was a problem hiding this comment.
E501 line too long (82 > 80 characters)
Origin: PycodestyleBear (E501), Section: all.python.default.
| print(f'{key} (REMOVED): {sorted(removed)}\n' | ||
| f'{indent} (NEW): {sorted(added)}') | ||
| continue | ||
| elif len(lines) == len(old_lines) and len(common_lines) == len(lines) - 1: |
There was a problem hiding this comment.
E501 line too long (82 > 80 characters)
Origin: PycodestyleBear (E501), Section: all.python.default.
| common_lines = lines.intersection(old_lines) | ||
| if lines < old_lines: | ||
| print(f'{key} (REMOVED LINES):\n') | ||
| for line in new_lines: |
There was a problem hiding this comment.
undefined name 'new_lines'
Origin: PyFlakesBear, Section: all.python.default.
| if not isinstance(old_value, set): | ||
| print(f'wtf {key} {type(value)}') | ||
| if old_value > value: | ||
| print(f'{key}: {sorted(old_value)} - {sorted(old_value - value)}') |
There was a problem hiding this comment.
Line is longer than allowed. (82 > 80)
Origin: LineLengthBear, Section: all.linelength.
| if old_value > value: | ||
| print(f'{key}: {sorted(old_value)} - {sorted(old_value - value)}') | ||
| elif value > old_value: | ||
| print(f'{key}: {sorted(old_value)} + {sorted(value - old_value)}') |
There was a problem hiding this comment.
Line is longer than allowed. (82 > 80)
Origin: LineLengthBear, Section: all.linelength.
| print(f'{key} (REMOVED): {sorted(removed)}\n' | ||
| f'{indent} (NEW): {sorted(added)}') | ||
| continue | ||
| elif len(lines) == len(old_lines) and len(common_lines) == len(lines) - 1: |
There was a problem hiding this comment.
Line is longer than allowed. (82 > 80)
Origin: LineLengthBear, Section: all.linelength.
Travis tests have failedHey @jayvdb, 1st Buildpytestcoala --non-interactive -VTravisBuddy Request Identifier: 1abf0b80-d6b6-11e8-a0c1-37e29dcbd83a |
Travis tests have failedHey @jayvdb, 1st Buildpytestcoala --non-interactive -VTravisBuddy Request Identifier: 15c3ebf0-d6bb-11e8-a0c1-37e29dcbd83a |
Travis tests have failedHey @jayvdb, 1st Buildpytestcoala --non-interactive -VTravisBuddy Request Identifier: 8846fef0-d6bc-11e8-a0c1-37e29dcbd83a |
Travis tests have failedHey @jayvdb, 1st Buildpytestcoala --non-interactive -VTravisBuddy Request Identifier: a6c47810-d6d2-11e8-a0c1-37e29dcbd83a |
Travis tests have failedHey @jayvdb, 1st BuildpytestTravisBuddy Request Identifier: 796b3f90-d6d5-11e8-a0c1-37e29dcbd83a |
439de8b to
9107902
Compare
| elif len(added) <= 3 and len(removed) <= 3: | ||
| if removed: | ||
| print(f'{key} (REMOVED): {sorted(removed)}') | ||
| if remove and added: |
There was a problem hiding this comment.
undefined name 'remove'
Origin: PyFlakesBear, Section: all.python.default.
Travis tests have failedHey @jayvdb, 1st Buildpytestcoala --non-interactive -VTravisBuddy Request Identifier: 246006e0-d8ea-11e8-b9f2-b1fbc111596d |
|
@jayvdb The |
A rather large sprawling set of changes.