Skip to content

Commit

Permalink
fix: possible task list. (#2638)
Browse files Browse the repository at this point in the history
* Fix possible task list.

* Fix.

* Fix.

* Minor fix to update display name of nightly test run develop.

* Run new meshing workflow tests for versions 24.1 onwards.
  • Loading branch information
prmukherj authored Apr 2, 2024
1 parent 9be4d01 commit 0d99b21
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-test-run-develop-branch.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nightly Test Run Develop
name: Nightly Test Run (Develop)

on:
schedule: # UTC at 0300
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ def _populate_help_string_command_id_map(self):
if isinstance(command_obj, PyCommand):
command_obj_instance = command_obj.create_instance()
help_str = command_obj_instance.get_attr("helpString")
if help_str and help_str.islower():
if help_str in self.child_task_python_names():
self._help_string_command_id_map[help_str] = command
self._help_string_display_text_map[help_str] = (
command_obj_instance.get_attr("displayText")
Expand Down
4 changes: 2 additions & 2 deletions tests/test_new_meshing_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@pytest.mark.nightly
@pytest.mark.codegen_required
@pytest.mark.fluent_version(">=23.2")
@pytest.mark.fluent_version(">=24.1")
def test_new_watertight_workflow(new_mesh_session):
# Import geometry
import_file_name = examples.download_file(
Expand Down Expand Up @@ -81,7 +81,7 @@ def test_new_watertight_workflow(new_mesh_session):

@pytest.mark.nightly
@pytest.mark.codegen_required
@pytest.mark.fluent_version(">=23.2")
@pytest.mark.fluent_version(">=24.1")
def test_new_fault_tolerant_workflow(new_mesh_session):
meshing = new_mesh_session

Expand Down

0 comments on commit 0d99b21

Please sign in to comment.