Target correct module for pylint
This commit is contained in:
parent
5135f6607a
commit
978a322e70
@ -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.
|
build-job: # This job runs in the build stage, which runs first.
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- echo "Compiling the code..."
|
- echo "Attempting to build distribution wheel"
|
||||||
- python -m build --wheel
|
- python -m build --wheel
|
||||||
- echo "Compile complete."
|
- echo "Wheel successfully built!"
|
||||||
|
|
||||||
# unit-test-job: # This job runs in the test stage.
|
# unit-test-job: # This job runs in the test stage.
|
||||||
# stage: test # It only starts when the job in the build stage completes successfully.
|
# 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.
|
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).
|
stage: test # It can run at the same time as unit-test-job (in parallel).
|
||||||
script:
|
script:
|
||||||
- python -m pylint asyndb
|
- python -m pylint asyncdb
|
||||||
|
|
||||||
deploy-job: # This job runs in the deploy stage.
|
deploy-job: # This job runs in the deploy stage.
|
||||||
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
|
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
|
||||||
|
Loading…
Reference in New Issue
Block a user