fixed `scriptcheck.yml` (#5268)
This commit is contained in:
parent
e7a2585e0a
commit
5a322365a6
|
@ -37,12 +37,11 @@ jobs:
|
||||||
|
|
||||||
needs: build
|
needs: build
|
||||||
# 'ubuntu-22.04' removes Python 2.7, 3.5 and 3.6 so keep the previous LTS version
|
# 'ubuntu-22.04' removes Python 2.7, 3.5 and 3.6 so keep the previous LTS version
|
||||||
|
# 'ubutunu-20.04' no longer works on 2.7 - TODO: re-added in a different way or remove support for it?
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
container:
|
|
||||||
image: python:2.7.18-buster
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', '3.11']
|
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10', '3.11']
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -418,7 +418,7 @@ def misra_9_x(self, data, rule, rawTokens = None):
|
||||||
has_var = True
|
has_var = True
|
||||||
continue
|
continue
|
||||||
unknown_constant = True
|
unknown_constant = True
|
||||||
cppcheckdata.reportError(sz, 'error', f'Unknown constant {t.str}, please review configuration', 'misra', 'config')
|
cppcheckdata.reportError(sz, 'error', 'Unknown constant {}, please review configuration'.format(t.str), 'misra', 'config')
|
||||||
has_config_errors = True
|
has_config_errors = True
|
||||||
if t.isArithmeticalOp:
|
if t.isArithmeticalOp:
|
||||||
tokens += [t.astOperand1, t.astOperand2]
|
tokens += [t.astOperand1, t.astOperand2]
|
||||||
|
|
Loading…
Reference in New Issue