Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,13 @@ jobs:
shell: bash
if: inputs.testing-minimal == true
run: |
apt-get update && apt install -y libgomp1 graphviz curl && apt-get clean
apt-get update && apt install -y libgomp1 graphviz curl git && apt-get clean

- name: "Installing OS packages"
shell: bash
if: inputs.testing-minimal == false
run: |
apt-get update && apt install -y libgl1 libglx-mesa0 xvfb libgomp1 graphviz curl && apt-get clean
apt-get update && apt install -y libgl1 libglx-mesa0 xvfb libgomp1 graphviz curl git && apt-get clean

- name: "Setup Python"
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c #v6.0.0
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4299.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Relax stdout check for gRPC server startup
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def _check_server_is_alive(stdout_queue: QueueWithStorage, timeout: int):
continue

if (
"START GRPC SERVER" in terminal_output
"GRPC SERVER" in terminal_output
and "Server listening on" in terminal_output
):
listening_on = terminal_output.splitlines()[-1]
Expand Down
Loading