41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
include:
|
|
- template: Code-Quality.gitlab-ci.yml
|
|
|
|
default:
|
|
image: python:3.9-alpine
|
|
before_script:
|
|
- apk add build-base
|
|
- apk add --no-cache postgresql-libs
|
|
- apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev
|
|
- python3.9 -m pip install -r requirements.txt
|
|
- apk --purge del .build-deps
|
|
|
|
stages: # List of stages for jobs, and their order of execution
|
|
- stage-1
|
|
- test
|
|
|
|
build-wheel:
|
|
stage: stage-1
|
|
script:
|
|
- echo "Attempting to build distribution wheel"
|
|
- python -m build --wheel
|
|
- echo "Wheel successfully built!"
|
|
|
|
pylint:
|
|
stage: stage-1
|
|
script:
|
|
- python3.9 -m pip install pylint pylint-exit anybadge
|
|
- python3.9 -m pylint --output-format=text asyncdb | tee pylint.log || pylint-exit "${?}"
|
|
- PYLINT_SCORE="$(sed -n 's/^Your code has been rated at \([-0-9.]*\)\/.*/\1/p' pylint.log)"
|
|
- anybadge --label=Pylint --file=pylint.svg --value="${PYLINT_SCORE}" 2=red 4=orange 8=yellow 10=green
|
|
- echo "Pylint score is ${PYLINT_SCORE}"
|
|
artifacts:
|
|
paths:
|
|
- pylint.svg
|
|
|
|
code_quality:
|
|
inherit:
|
|
default: false
|
|
stage: test
|
|
image: docker:stable
|