Compare commits

...

5 Commits

Author SHA1 Message Date
a1813a560f fixing broken format of endpoints 2024-09-26 07:38:09 +00:00
da1b325787 adding new service Enterprise Router + FunctionGraph fix
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Eotvos, Oliver <oliver.eotvos@t-systems.com>
Co-committed-by: Eotvos, Oliver <oliver.eotvos@t-systems.com>
2024-09-26 07:02:26 +00:00
b620c674ec Adding DDM service in REGION and ENDPOINTS page
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com>
Co-authored-by: Boka, Ladislav <ladislav.boka@t-systems.com>
Co-committed-by: Boka, Ladislav <ladislav.boka@t-systems.com>
2024-09-17 11:16:19 +00:00
e2a256b7cc Update tox.ini && conf.py file
Reviewed-by: tischrei <tino.schreiber@t-systems.com>
Co-authored-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-committed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
2024-09-06 12:56:48 +00:00
1dabb462d9 Adding FunctionGraph endpoint
Reviewed-by: Gode, Sebastian <sebastian.gode@t-systems.com>
Co-authored-by: Eotvos, Oliver <oliver.eotvos@t-systems.com>
Co-committed-by: Eotvos, Oliver <oliver.eotvos@t-systems.com>
2024-07-03 13:33:06 +00:00
5 changed files with 189 additions and 176 deletions

View File

@ -8,4 +8,5 @@ reno>=3.1.0 # Apache-2.0
otc-sphinx-directives>=0.1.0
sphinx-minify>=0.0.1 # Apache-2.0
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
setuptools
setuptools
gitpython

View File

@ -16,6 +16,8 @@
import os
import sys
from git import Repo
from datetime import datetime
extensions = [
'otcdocstheme',
@ -111,3 +113,9 @@ html_copy_source = False
# -- Options for PDF output --------------------------------------------------
latex_documents = []
# Get the Git commit values for last updated timestamp on each page
repo = Repo(search_parent_directories=True)
commit = repo.head.commit
current_commit_hash = commit.hexsha
current_commit_time = commit.committed_datetime.strftime('%Y-%m-%d %H:%M')

File diff suppressed because it is too large Load Diff

View File

@ -13,6 +13,8 @@ commands = stestr run {posargs}
stestr slowest
[testenv:pep8]
allowlist_externals =
doc8
commands =
doc8 doc/source README.rst

View File

@ -1,3 +1,4 @@
---
- project:
merge-mode: squash-merge
default-branch: main
@ -8,4 +9,4 @@
- noop
gate:
jobs:
- noop
- noop