Skip to content

Commit

Permalink
parser: bump to 3.5 release
Browse files Browse the repository at this point in the history
to make use of the better append detection, which solves
reported false positives.
Added an additional test case to avoid future regressions.

Closes #563

Signed-off-by: Konrad Weihmann <[email protected]>
  • Loading branch information
priv-kweihmann committed Apr 20, 2024
1 parent 138e742 commit 67e4f15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
anytree ~= 2.12
argcomplete ~= 3.3
colorama ~= 0.4
oelint-parser ~= 3.4
oelint-parser ~= 3.5
urllib3 ~= 2.2
7 changes: 7 additions & 0 deletions tests/test_class_oelint_var_override.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ def test_bad(self, input_, id_, occurrence):
A .= "1"
''',
},
{
'oelint_adv_test.bb':
'''
A = "1"
A += "1"
''',
},
{
'oelint_adv_test.bb':
'''
Expand Down

0 comments on commit 67e4f15

Please sign in to comment.