added `--strict` and `-vv` to pytest calls (#5453)
This commit is contained in:
parent
e611b18ffc
commit
176edbd22c
|
@ -366,11 +366,11 @@ jobs:
|
||||||
- name: Run test/cli
|
- name: Run test/cli
|
||||||
run: |
|
run: |
|
||||||
cd test/cli
|
cd test/cli
|
||||||
python3 -m pytest test-*.py
|
python3 -m pytest --strict -vv test-*.py
|
||||||
cd ../../..
|
cd ../../..
|
||||||
ln -s cppcheck 'cpp check'
|
ln -s cppcheck 'cpp check'
|
||||||
cd 'cpp check/test/cli'
|
cd 'cpp check/test/cli'
|
||||||
python3 -m pytest test-*.py
|
python3 -m pytest --strict -vv test-*.py
|
||||||
|
|
||||||
- name: Run cfg tests
|
- name: Run cfg tests
|
||||||
if: matrix.os != 'ubuntu-22.04'
|
if: matrix.os != 'ubuntu-22.04'
|
||||||
|
|
|
@ -168,13 +168,13 @@ jobs:
|
||||||
copy .\bin\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel!
|
copy .\bin\cppcheck.exe .\cppcheck.exe || exit /b !errorlevel!
|
||||||
copy .\bin\cppcheck-core.dll .\cppcheck-core.dll || exit /b !errorlevel!
|
copy .\bin\cppcheck-core.dll .\cppcheck-core.dll || exit /b !errorlevel!
|
||||||
cd test/cli || exit /b !errorlevel!
|
cd test/cli || exit /b !errorlevel!
|
||||||
:: python -m pytest --suppress-no-test-exit-code test-clang-import.py || exit /b !errorlevel!
|
:: python -m pytest --strict -vv --suppress-no-test-exit-code test-clang-import.py || exit /b !errorlevel!
|
||||||
python -m pytest test-helloworld.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-helloworld.py || exit /b !errorlevel!
|
||||||
python -m pytest test-inline-suppress.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-inline-suppress.py || exit /b !errorlevel!
|
||||||
python -m pytest test-more-projects.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-more-projects.py || exit /b !errorlevel!
|
||||||
python -m pytest test-other.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-other.py || exit /b !errorlevel!
|
||||||
python -m pytest test-proj2.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-proj2.py || exit /b !errorlevel!
|
||||||
python -m pytest test-suppress-syntaxError.py || exit /b !errorlevel!
|
python -m pytest --strict -vv test-suppress-syntaxError.py || exit /b !errorlevel!
|
||||||
|
|
||||||
- name: Test addons
|
- name: Test addons
|
||||||
if: matrix.config == 'release'
|
if: matrix.config == 'release'
|
||||||
|
|
|
@ -137,7 +137,7 @@ jobs:
|
||||||
|
|
||||||
- name: test addons
|
- name: test addons
|
||||||
run: |
|
run: |
|
||||||
python -m pytest -v addons/test/test-*.py
|
python -m pytest --strict -vv addons/test/test-*.py
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: ./addons
|
PYTHONPATH: ./addons
|
||||||
|
|
||||||
|
@ -149,21 +149,21 @@ jobs:
|
||||||
|
|
||||||
- name: test reduce
|
- name: test reduce
|
||||||
run: |
|
run: |
|
||||||
python -m pytest -v tools/test_reduce.py
|
python -m pytest --strict -vv tools/test_reduce.py
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: ./tools
|
PYTHONPATH: ./tools
|
||||||
|
|
||||||
- name: test donate_cpu_lib
|
- name: test donate_cpu_lib
|
||||||
if: matrix.python-version != '2.7'
|
if: matrix.python-version != '2.7'
|
||||||
run: |
|
run: |
|
||||||
python -m pytest -v tools/test_donate_cpu_lib.py
|
python -m pytest --strict -vv tools/test_donate_cpu_lib.py
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: ./tools
|
PYTHONPATH: ./tools
|
||||||
|
|
||||||
- name: test donate_cpu_server
|
- name: test donate_cpu_server
|
||||||
if: matrix.python-version != '2.7'
|
if: matrix.python-version != '2.7'
|
||||||
run: |
|
run: |
|
||||||
python -m pytest -v tools/test_donate_cpu_server.py
|
python -m pytest --strict -vv tools/test_donate_cpu_server.py
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: ./tools
|
PYTHONPATH: ./tools
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue