Compare commits
2 Commits
bd1c464a2a
...
df178d08d8
Author | SHA1 | Date | |
---|---|---|---|
![]() |
df178d08d8 | ||
![]() |
c0fc78fe33 |
@ -9,8 +9,8 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: apt-get update && apt-get install -y python3-pip
|
- 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: pip install --break-system-package pytest
|
||||||
- run: pytest
|
- run: pytest
|
||||||
|
|
||||||
mypy:
|
mypy:
|
||||||
@ -19,8 +19,8 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: apt-get update && apt-get install -y python3-pip
|
- 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: pip install --break-system-package mypy
|
||||||
- run: mypy org_rw --check-untyped-defs
|
- run: mypy org_rw --check-untyped-defs
|
||||||
|
|
||||||
style-formatting:
|
style-formatting:
|
||||||
@ -29,8 +29,8 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: apt-get update && apt-get install -y python3-pip
|
- 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: pip install --break-system-package black
|
||||||
- run: black --check .
|
- run: black --check .
|
||||||
|
|
||||||
style-sorted-imports:
|
style-sorted-imports:
|
||||||
@ -39,8 +39,8 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: apt-get update && apt-get install -y python3-pip
|
- 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: pip install --break-system-package isort
|
||||||
- run: isort --profile black --check .
|
- run: isort --profile black --check .
|
||||||
|
|
||||||
stability-extra-test:
|
stability-extra-test:
|
||||||
@ -49,5 +49,5 @@ jobs:
|
|||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- run: apt-get update && apt-get install -y git-core python3-pip
|
- 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
|
- run: bash extra-tests/check_all.sh
|
||||||
|
@ -24,6 +24,14 @@ class ResultsDrawerNode(DrawerNode):
|
|||||||
return "<Results: {}>".format(len(self.children))
|
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:
|
class PropertyNode:
|
||||||
def __init__(self, key, value):
|
def __init__(self, key, value):
|
||||||
self.key = key
|
self.key = key
|
||||||
|
@ -122,6 +122,7 @@ NON_FINISHED_GROUPS = (
|
|||||||
dom.ListGroupNode,
|
dom.ListGroupNode,
|
||||||
dom.ResultsDrawerNode,
|
dom.ResultsDrawerNode,
|
||||||
dom.PropertyDrawerNode,
|
dom.PropertyDrawerNode,
|
||||||
|
dom.GenericDrawerNode,
|
||||||
)
|
)
|
||||||
FREE_GROUPS = (dom.CodeBlock,)
|
FREE_GROUPS = (dom.CodeBlock,)
|
||||||
|
|
||||||
@ -636,6 +637,13 @@ class Headline:
|
|||||||
assert current_node is None
|
assert current_node is None
|
||||||
current_node = dom.ResultsDrawerNode()
|
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
|
# TODO: Allow indentation of these blocks inside others
|
||||||
indentation_tree = [current_node]
|
indentation_tree = [current_node]
|
||||||
tree.append(current_node)
|
tree.append(current_node)
|
||||||
|
Loading…
Reference in New Issue
Block a user