Skip to content
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

test: Activate 2d meshing tests for 25 R1 #3281

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
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 tests/test_meshing_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def test_old_workflow_structure(new_meshing_session):

@pytest.mark.nightly
@pytest.mark.codegen_required
@pytest.mark.fluent_version("==24.2")
@pytest.mark.fluent_version(">=24.2")
def test_new_2d_meshing_workflow(new_meshing_session):
# Import geometry
import_file_name = examples.download_file("NACA0012.fmd", "pyfluent/airfoils")
Expand Down Expand Up @@ -397,7 +397,7 @@ def test_new_2d_meshing_workflow(new_meshing_session):

meshing.workflow.TaskObject["Export Fluent 2D Mesh"].Arguments.set_state(
{
r"FileName": r"C:\ANSYSDev\PyFluent_Dev_01\pyfluent\out\case1.msh.h5",
r"FileName": r"case1.msh.h5",
}
)
meshing.workflow.TaskObject["Export Fluent 2D Mesh"].Execute()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_new_meshing_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def test_new_fault_tolerant_workflow(new_meshing_session):

@pytest.mark.nightly
@pytest.mark.codegen_required
@pytest.mark.fluent_version("==24.2")
@pytest.mark.fluent_version(">=24.2")
def test_new_2d_meshing_workflow(new_meshing_session):
# Import geometry
import_file_name = examples.download_file("NACA0012.fmd", "pyfluent/airfoils")
Expand Down
Loading