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
......@@ -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")'
......@@ -10,9 +10,9 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
#import os
#import sys
#sys.path.insert(0, os.path.abspath('../../plotid'))
# import os
# import sys
# sys.path.insert(0, os.path.abspath('../../plotid'))
# -- Project information -----------------------------------------------------
......@@ -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