We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c730f commit e975bceCopy full SHA for e975bce
.github/workflows/test.yml
@@ -140,7 +140,10 @@ jobs:
140
print(f'\nFound {len(problematic_lines)} problematic line(s):')
141
for line_num, line_content in problematic_lines:
142
print(f'Line {line_num}: {line_content}')
143
- print('\nTo fix: Replace self.assertTrue( with self.assert_( in the code above')
+ print('\nTo fix:')
144
+ print('1. Replace self.assertTrue( with self.assert_( in the code above')
145
+ print('2. If this is a PR, merge or rebase with the latest main branch')
146
+ print(' (main branch already has this fix in commit c7a43a9)')
147
exit(1)
148
149
# Verify that self.assert_( is used (positive check)
0 commit comments