Skip to content

Commit

Permalink
Merge branch 'fix/generic_restructuring' of https://github.com/pyansy…
Browse files Browse the repository at this point in the history
…s/pyfluent into fix/generic_restructuring
  • Loading branch information
hpohekar committed Apr 4, 2024
2 parents 6cd5e80 + 7180870 commit 02861eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ansys/fluent/core/launcher/fluent_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
from typing import List, Optional, Union

import ansys.fluent.core as pyfluent
from ansys.fluent.core._version import fluent_release_version
from ansys.fluent.core.session import _parse_server_info_file
from ansys.fluent.core.utils.execution import timeout_loop
from ansys.fluent.core.utils.networking import get_free_port
Expand Down Expand Up @@ -283,7 +284,7 @@ def configure_container_dict(

if not fluent_image:
if not image_tag:
image_tag = os.getenv("FLUENT_IMAGE_TAG", "v23.2.0")
image_tag = os.getenv("FLUENT_IMAGE_TAG", f"v{fluent_release_version}")
if not image_name:
image_name = os.getenv("FLUENT_IMAGE_NAME", "ghcr.io/ansys/pyfluent")
if not image_tag or not image_name:
Expand Down
1 change: 1 addition & 0 deletions tests/test_launcher_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def is_configured(self):
return True


@pytest.mark.codegen_required
@pytest.mark.fluent_version(">=24.2")
def test_file_purpose_on_remote_instance(
monkeypatch, new_solver_session, new_mesh_session
Expand Down
1 change: 0 additions & 1 deletion tests/test_meshing_queries_fdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def pytest_approx(expected):
return pytest.approx(expected=expected, rel=PYTEST_RELATIVE_TOLERANCE)


@pytest.mark.skip(reason="https://github.com/ansys/pyfluent/issues/2634")
@pytest.mark.codegen_required
@pytest.mark.nightly
@pytest.mark.fluent_version(">=24.2")
Expand Down

0 comments on commit 02861eb

Please sign in to comment.