Target correct module for pylint

This commit is contained in:
Price Hiller 2021-10-06 06:31:14 -05:00
parent 5135f6607a
commit 978a322e70

View File

@ -15,9 +15,9 @@ stages: # List of stages for jobs, and their order of execution
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- echo "Compiling the code..."
- echo "Attempting to build distribution wheel"
- python -m build --wheel
- echo "Compile complete."
- 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.
@ -29,7 +29,7 @@ build-job: # This job runs in the build stage, which runs first.
lint-test-job: # This job also runs in the test stage.
stage: test # It can run at the same time as unit-test-job (in parallel).
script:
- python -m pylint asyndb
- python -m pylint asyncdb
deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.