Compare commits

...

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
df178d08d8 feat(dom): Add support for generic drawer outputs.
Some checks failed
Testing / pytest (push) Successful in 23s
Testing / mypy (push) Failing after 28s
Testing / style-formatting (push) Failing after 24s
Testing / style-sorted-imports (push) Successful in 18s
Testing / stability-extra-test (push) Successful in 24s
2025-02-09 14:13:28 +01:00
Sergio Martínez Portela
c0fc78fe33 fix(gitea): Fix build with newer images. 2025-02-09 14:13:28 +01:00
3 changed files with 25 additions and 9 deletions

View File

@ -9,8 +9,8 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install pytest
- run: pip install --break-system-package -e .
- run: pip install --break-system-package pytest
- run: pytest
mypy:
@ -19,8 +19,8 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install mypy
- run: pip install --break-system-package -e .
- run: pip install --break-system-package mypy
- run: mypy org_rw --check-untyped-defs
style-formatting:
@ -29,8 +29,8 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install black
- run: pip install --break-system-package -e .
- run: pip install --break-system-package black
- run: black --check .
style-sorted-imports:
@ -39,8 +39,8 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install isort
- run: pip install --break-system-package -e .
- run: pip install --break-system-package isort
- run: isort --profile black --check .
stability-extra-test:
@ -49,5 +49,5 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y git-core python3-pip
- run: pip install -e .
- run: pip install --break-system-package -e .
- run: bash extra-tests/check_all.sh

View File

@ -24,6 +24,14 @@ class ResultsDrawerNode(DrawerNode):
return "<Results: {}>".format(len(self.children))
class GenericDrawerNode(DrawerNode):
def __init__(self, drawer_name):
self.drawer_name = drawer_name
def __repr__(self):
return "<Drawer(): {}>".format(self.drawer_name, len(self.children))
class PropertyNode:
def __init__(self, key, value):
self.key = key

View File

@ -122,6 +122,7 @@ NON_FINISHED_GROUPS = (
dom.ListGroupNode,
dom.ResultsDrawerNode,
dom.PropertyDrawerNode,
dom.GenericDrawerNode,
)
FREE_GROUPS = (dom.CodeBlock,)
@ -636,6 +637,13 @@ class Headline:
assert current_node is None
current_node = dom.ResultsDrawerNode()
# TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node]
tree.append(current_node)
elif content.strip().startswith(':') and content.strip().endswith(':'):
assert current_node is None
current_node = dom.GenericDrawerNode(content.strip().strip(':'))
# TODO: Allow indentation of these blocks inside others
indentation_tree = [current_node]
tree.append(current_node)