Requirements update, further attempts at gitlab pylint

This commit is contained in:
Price Hiller 2021-10-06 06:49:16 -05:00
parent 8023b0917b
commit a234126121
2 changed files with 28 additions and 10 deletions

View File

@ -7,16 +7,11 @@ default:
- python3 -m pip install -r requirements.txt
- apk --purge del .build-deps
stages: # List of stages for jobs, and their order of execution
- build
- test
stages: # List of stages for jobs, and their order of execution
- Test
- Build Wheel
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- echo "Attempting to build distribution wheel"
- python -m build --wheel
- echo "Wheel successfully built!"
# unit-test-job: # This job runs in the test stage.
# stage: test # It only starts when the job in the build stage completes successfully.
@ -25,7 +20,21 @@ build-job: # This job runs in the build stage, which runs first.
# - sleep 60
# - echo "Code coverage is 90%"
lint-test-job: # This job also runs in the test stage.
pylint:
stage: Static Analysis
before_script:
- pip install pylint-exit anybadge
script:
- mkdir ./pylint
- pylint --output-format=text asyncdb | tee ./pylint/pylint.log || pylint-exit "${?}"
- PYLINT_SCORE=$(sed -n 's/^Your code has been rated at \([-0-9.]*\)\/.*/\1/p' ./pylint/pylint.log)
- anybadge --label=Pylint --file=pylint/pylint.svg --value=$PYLINT_SCORE 2=red 4=orange 8=yellow 10=green
- echo "Pylint score is "${PYLINT_SCORE}"
artifacts:
paths:
- ./pylint/
lint-test-job: # This job also runs in the test stage.
stage: test
before_script:
- pip install pylint pylint-exit anybadge
@ -39,3 +48,10 @@ lint-test-job: # This job also runs in the test stage.
paths:
- ./pylint/
build-job: # This job runs in the build stage, which runs first.
stage: Build Wheel
script:
- echo "Attempting to build distribution wheel"
- python -m build --wheel
- echo "Wheel successfully built!"

View File

@ -16,3 +16,5 @@ toml==0.10.2
tomli==1.2.1
typing-extensions==3.10.0.2
wrapt==1.12.1
pytest==6.2.5