442b14c0f0a84fd5a83d5a374beefd0f93db86d7
[kconfig-hardened-check.git] / .woodpecker / engine_unit-test.yml
1 # .woodpecker.yml
2 pipeline:
3   unit-test:
4     image: python:3
5     pull: true
6     commands:
7       - echo "Prepare the engine unit-test..."
8       - python --version
9       - pip install --no-cache-dir coverage
10       - echo "Run unit-tests and collect coverage..."
11       - coverage run --include=kconfig_hardened_check/engine.py,kconfig_hardened_check/test_engine.py -m unittest -v -b
12       - echo "Show the coverage report..."
13       - coverage report