Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
MESH-2092 Bump starlette from 0.48.0 to 0.49.1 #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
MESH-2092 Bump starlette from 0.48.0 to 0.49.1 #199
Changes from all commits
c7adaf7205c2c5e744c19077d787f621113File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
Check failure on line 158 in src/mesh_sandbox/tests/java_client_tests.py
java_client_tests.test_basic_send_and_receive[6.3.6]
Raw output
base_uri = 'http://localhost:44013', version = '6.3.6' @pytest.mark.parametrize("version", ["6.3.6"]) def test_basic_send_and_receive(base_uri: str, version: str): # pylint: disable=too-many-locals base_dir, client_args = configure_client(base_uri, version) sender, recipient = _CANNED_MAILBOX1, _CANNED_MAILBOX2 configure_mailboxes(base_dir, [sender, recipient]) message = f"test-{uuid4().hex}".encode() workflow_id = uuid4().hex subject = uuid4().hex local_id = uuid4().hex sent_file = send_message(message, sender, recipient, workflow_id, subject, local_id, base_dir) run_process_and_terminate_after(client_args, sleep_for=2) run_process_and_terminate_after(client_args, sleep_for=2) sender_dir = os.path.join(base_dir, f"data/{sender}") recipient_dir = os.path.join(base_dir, f"data/{recipient}") assert sent_file assert os.path.exists(f"{sender_dir}/SENT/{sent_file}.dat") assert os.path.exists(f"{sender_dir}/SENT/{sent_file}.ctl") > message_id = find_sent_message_id(f"{sender_dir}/SENT/{sent_file}.ctl") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ src/mesh_sandbox/tests/java_client_tests.py:187: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ctl_file = '/home/runner/work/mesh-sandbox/mesh-sandbox/java_client/6.3.6/data/X26ABC1/SENT/5b9657f2ab6a4a5086c2d1dc23227d95.ctl' def find_sent_message_id(ctl_file: str) -> str: parser = etree.XMLParser(remove_blank_text=True, resolve_entities=False) root = cast(_ElementTree, etree.parse(ctl_file, parser)).getroot() message_id = root.find("DTSId") > assert message_id == "NOT THE MESSAGE ID BREAKING" E AssertionError: assert <Element DTSId at 0x7fe7a07d0840> == 'NOT THE MESSAGE ID BREAKING' src/mesh_sandbox/tests/java_client_tests.py:158: AssertionErrorUh oh!
There was an error while loading. Please reload this page.