fixes
This commit is contained in:
parent
cecc41a0d8
commit
1178191d25
@ -3,6 +3,7 @@
|
|||||||
stage: test
|
stage: test
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
- pip install pytest pytest-cov pytest-custom_exit_code httpx
|
||||||
- cd src/test
|
- cd src/test
|
||||||
artifacts:
|
artifacts:
|
||||||
reports:
|
reports:
|
||||||
@ -16,4 +17,23 @@ test:
|
|||||||
- test_config_token.py
|
- test_config_token.py
|
||||||
- pytest test_decrypt.py
|
- pytest test_decrypt.py
|
||||||
- test_instance_token.py
|
- test_instance_token.py
|
||||||
script: [ python -m pytest $TEST_FILE --junitxml=report.xml ]
|
script:
|
||||||
|
- coverage run -m pytest $TEST_FILE --junitxml=report.xml --suppress-no-test-exit-code
|
||||||
|
- coverage report $TEST_FILE
|
||||||
|
- coverage xml $TEST_FILE
|
||||||
|
artifacts:
|
||||||
|
reports:
|
||||||
|
junit: [ "**/report.xml" ]
|
||||||
|
coverage_report:
|
||||||
|
coverage_format: cobertura
|
||||||
|
path: "**/coverage.xml"
|
||||||
|
|
||||||
|
docker:inspect:
|
||||||
|
rules:
|
||||||
|
- when: manual
|
||||||
|
before_script:
|
||||||
|
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
|
||||||
|
script:
|
||||||
|
- docker pull $CI_REGISTRY/$CI_PROJECT_PATH/appliance:3.4.1
|
||||||
|
- docker inspect $CI_REGISTRY/$CI_PROJECT_PATH/appliance:3.4.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user