Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Commits
dd9432cc
Verified
Commit
dd9432cc
authored
1 year ago
by
Karel van Klink
Browse files
Options
Downloads
Patches
Plain Diff
ignore docs folder in linting pipeline
parent
4a94f99a
No related branches found
No related tags found
1 merge request
!38
Update documentation
Pipeline
#83196
failed
1 year ago
Stage: tox
Stage: documentation
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+7
-4
7 additions, 4 deletions
pyproject.toml
tox.ini
+1
-1
1 addition, 1 deletion
tox.ini
with
8 additions
and
5 deletions
pyproject.toml
+
7
−
4
View file @
dd9432cc
...
...
@@ -18,9 +18,9 @@ packages = ["gso"]
[tool.isort]
profile
=
"black"
line_length
=
120
skip
=
[
"venv"
,
".tox"
,
"gso/migrations"
]
skip
=
[
"venv"
,
".tox"
,
"gso/migrations"
,
"docs"
]
known_third_party
=
[
"pydantic"
,
"migrations"
]
known_first_party
=
[
"test"
]
known_first_party
=
[
"test"
,
"docs"
]
[tool.black]
line-length
=
120
...
...
@@ -33,6 +33,7 @@ exclude = '''
| \.*_cache
| \.tox
| venv
| docs
| gso/migrations
)/
)
...
...
@@ -41,7 +42,8 @@ exclude = '''
[tool.mypy]
exclude
=
[
"venv"
,
"test/*"
"test/*"
,
"docs"
]
ignore_missing_imports
=
true
disallow_untyped_calls
=
true
...
...
@@ -72,6 +74,7 @@ exclude = [
"htmlcov"
,
"venv"
,
"gso/migrations"
,
"docs"
,
"_ipam.py"
# TODO: remove
]
ignore
=
[
...
...
@@ -122,4 +125,4 @@ ban-relative-imports = "all"
[tool.ruff.isort]
known-third-party
=
[
"pydantic"
,
"migrations"
]
known-first-party
=
[
"test"
]
known-first-party
=
[
"test"
,
"docs"
]
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
1
View file @
dd9432cc
[flake8]
ignore
=
D100,D101,D102,D103,D104,D105,D106,D107,D202,E501,RST301,RST304,W503,E203,C417,T202,S101
; extend-ignore = E203
exclude
=
.git,.*_cache,.eggs,*.egg-info,__pycache__,venv,.tox,gso/migrations
exclude
=
.git,.*_cache,.eggs,*.egg-info,__pycache__,venv,.tox,gso/migrations
,docs
enable-extensions
=
G
select
=
B,C,D,E,F,G,I,N,S,T,W,B902,B903,R
max-line-length
=
120
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment