Skip to content
Snippets Groups Projects
Commit a7813991 authored by nugget's avatar nugget
Browse files

Exlude conf.py of docs from pylint.

parent 9af26e62
No related branches found
No related tags found
3 merge requests!12v.0.1 for alpha release,!11Draft: Merge version0.1 changes into dev,!10Version0.1
Pipeline #739469 passed
This commit is part of merge request !11. Comments created here will be created in the context of that merge request.
......@@ -48,7 +48,7 @@ PEP8:
Pylint:
stage: linting
# allow_failure: true
script: find . -type f -name '*.py' | xargs pylint -rn --fail-under=9 # Find all python files and check the code with pylint.
script: find . -type f -name '*.py' | xargs pylint -rn --fail-under=9 --ignore='docs/source/conf.py' # Find all python files and check the code with pylint.
test:
stage: testing
......
[MASTER]
init-hook='import sys; sys.path.append("./src/plotid")'
......@@ -33,7 +33,6 @@ release = '0.0.6'
extensions = [
'autoapi.extension'
]
#autosummary_generate = True # Turn on sphinx.ext.autosummary
autoapi_type = 'python'
autoapi_dirs = ['../../plotid', '../../tests']
......
[MASTER]
init-hook='import sys; sys.path.append("./plotid")'
ignore=docs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment