Compare commits

...

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
bd1c464a2a feat(dom): Add support for generic drawer outputs.
Some checks failed
Testing / stability-extra-test (push) Waiting to run
Testing / pytest (push) Failing after 21s
Testing / mypy (push) Failing after 24s
Testing / style-formatting (push) Failing after 16s
Testing / style-sorted-imports (push) Has been cancelled
2025-02-09 14:11:52 +01:00
Sergio Martínez Portela
34446bdb3b fix(gitea): Fix build with newer images.
Some checks failed
Testing / pytest (push) Has been cancelled
Testing / mypy (push) Has been cancelled
Testing / style-formatting (push) Has been cancelled
Testing / style-sorted-imports (push) Has been cancelled
Testing / stability-extra-test (push) Has been cancelled
2025-02-09 14:11:32 +01:00
3 changed files with 21 additions and 5 deletions

View File

@ -9,7 +9,7 @@ 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 --break-system-package -e .
- run: pip install pytest
- run: pytest
@ -19,7 +19,7 @@ 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 --break-system-package -e .
- run: pip install mypy
- run: mypy org_rw --check-untyped-defs
@ -29,7 +29,7 @@ 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 --break-system-package -e .
- run: pip install black
- run: black --check .
@ -39,7 +39,7 @@ 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 --break-system-package -e .
- run: pip install isort
- run: isort --profile black --check .
@ -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)