Skip to content
Snippets Groups Projects
Select Git revision
  • dcf78ad2b8b7e6fd03b2c8a12128c37aa52e32a5
  • develop default protected
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.22
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
24 results

test_interface_stats_e2e.py

Blame
  • conf.py 1015 B
    # -- Project information -----------------------------------------------------
    project = "GÉANT Service Orchestrator"
    copyright = "2023, GÉANT Vereniging"
    author = "GÉANT Orchestration and Automation Team"
    
    # -- General configuration ---------------------------------------------------
    extensions = ["sphinx_rtd_theme", "sphinx.ext.autodoc", "sphinxcontrib.jquery"]
    
    templates_path = ["templates"]
    exclude_patterns = ["build", "Thumbs.db", ".DS_Store", "venv", "vale", "__init__.py"]
    
    # -- Options for HTML output -------------------------------------------------
    html_theme = "sphinx_rtd_theme"
    html_static_path = ["static"]
    html_theme_options = {
        "style_nav_header_background": "rgb(0 63 95)",
    }
    html_css_files = ["custom.css"]
    html_js_files = ["custom.js"]
    html_logo = "static/geant_logo_white.svg"
    
    # Both the class' and the ``__init__`` method's docstring are concatenated and inserted.
    autoclass_content = "both"
    autodoc_typehints = "none"
    
    # Display todos by setting to True
    todo_include_todos = True