Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
Add Zuul job python-black and format source/conf.py
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Neumann <[email protected]>
  • Loading branch information
sbstnnmnn committed Nov 14, 2023
1 parent 7ed59a5 commit dfd941d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .zuul.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
check:
jobs:
- build-sphinx-docs
- python-black
gate:
jobs:
- build-sphinx-docs
- python-black
46 changes: 24 additions & 22 deletions source/conf.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
extensions = [
'sphinxcontrib.blockdiag',
'sphinxcontrib.nwdiag', 'sphinx.ext.todo', 'sphinx_fontawesome',
'zuul_sphinx'
"sphinxcontrib.blockdiag",
"sphinxcontrib.nwdiag",
"sphinx.ext.todo",
"sphinx_fontawesome",
"zuul_sphinx",
]
source_suffix = '.rst'
master_doc = 'index'
project = u'OSISM'
copyright = u'2017-2023, OSISM GmbH'
author = u'OSISM GmbH'
version = u''
release = u''
language = 'en'
source_suffix = ".rst"
master_doc = "index"
project = "OSISM"
copyright = "2017-2023, OSISM GmbH"
author = "OSISM GmbH"
version = ""
release = ""
language = "en"
exclude_patterns = []
pygments_style = 'sphinx'
pygments_style = "sphinx"
todo_include_todos = True
html_theme = 'sphinx_material'
html_theme = "sphinx_material"
html_show_sphinx = False
html_show_sourcelink = False
html_show_copyright = True
htmlhelp_basename = 'documentation'
htmlhelp_basename = "documentation"
html_theme_options = {
"nav_title": "OSISM Documentation",
"color_primary": "blue",
Expand All @@ -27,19 +29,19 @@
"globaltoc_collapse": True,
}
html_context = {
'display_github': True,
'github_user': 'osism',
'github_repo': 'documentation',
'github_version': 'main',
'conf_py_path': '/source/'
"display_github": True,
"github_user": "osism",
"github_repo": "documentation",
"github_version": "main",
"conf_py_path": "/source/",
}
html_logo = 'images/logo.png'
html_logo = "images/logo.png"
html_title = "OSISM Documentation"
html_sidebars = {
"**": ["logo-text.html", "globaltoc.html", "localtoc.html", "searchbox.html"]
}
#html_static_path = [
# html_static_path = [
# '_static'
#]
# ]
latex_elements = {}
zuul_role_paths = []

0 comments on commit dfd941d

Please sign in to comment.