Fix CI: Update how pylint and mypy look for files
This commit is contained in:
parent
066c874734
commit
83a7c7ad7d
1 changed files with 3 additions and 4 deletions
|
@ -21,14 +21,13 @@ mypy:
|
||||||
stage: lint&test
|
stage: lint&test
|
||||||
script:
|
script:
|
||||||
- pip install -r dev_requirements.txt
|
- pip install -r dev_requirements.txt
|
||||||
- python -m mypy src/main/python/ddadevops/*.py --ignore-missing-imports
|
- python -m mypy src/ --ignore-missing-imports
|
||||||
- python -m mypy src/main/python/ddadevops/*/*.py --ignore-missing-imports
|
|
||||||
|
|
||||||
pylint:
|
pylint:
|
||||||
stage: lint&test
|
stage: lint&test
|
||||||
script:
|
script:
|
||||||
- pip install -r dev_requirements.txt
|
- pip install -r dev_requirements.txt
|
||||||
- pylint -d C0301,W0614,C0114,C0115,C0116,similarities,W0702,W0702,R0913,R0902,R0914,R1732 src/main/python/ddadevops/*.py
|
- pylint -d C0301,W0614,C0114,C0115,C0116,similarities,W0702,W0702,R0913,R0902,R0914,R1732 src/
|
||||||
|
|
||||||
pytest:
|
pytest:
|
||||||
stage: lint&test
|
stage: lint&test
|
||||||
|
|
Loading…
Reference in a new issue