Skip to content

Commit 457b214

Browse files
committed
test: Enable some tests which are found to be passing locally
1 parent f314545 commit 457b214

7 files changed

+0
-9
lines changed

tests/parametric/test_parametric_workflow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
from ansys.fluent.core.utils.fluent_version import FluentVersion
3333

3434

35-
@pytest.mark.skip(reason="https://github.com/ansys/pyfluent/issues/3855")
3635
@pytest.mark.nightly
3736
@pytest.mark.fluent_version("latest")
3837
def test_parametric_workflow():

tests/test_datamodel_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ def cb(val):
276276
assert value == "xyz"
277277

278278

279-
@pytest.mark.skip(reason="https://github.com/ansys/pyfluent/issues/4298")
280279
@pytest.mark.fluent_version(">=25.2")
281280
def test_datamodel_api_on_command_attribute_changed(
282281
datamodel_api_version_all, request, new_solver_session
@@ -382,7 +381,6 @@ def test_datamodel_api_update_dict(datamodel_api_version_all, new_solver_session
382381
assert service.get_state(app_name, "/G/H") == {"X": "abc"}
383382

384383

385-
@pytest.mark.skip(reason="https://github.com/ansys/pyfluent/issues/4298")
386384
@pytest.mark.fluent_version(">=25.2")
387385
def test_datamodel_api_on_bad_input(
388386
datamodel_api_version_all, request, new_solver_session

tests/test_datamodel_service.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ def test_add_on_command_executed(new_meshing_session):
287287
assert data == []
288288

289289

290-
@pytest.mark.skip("https://github.com/ansys/pyfluent/issues/2999")
291290
@pytest.mark.fluent_version(">=23.2")
292291
@pytest.mark.codegen_required
293292
def test_datamodel_streaming_full_diff_state(

tests/test_error_handling.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def test_fluent_fatal_error(error_code, raises, new_solver_session):
4747
time.sleep(0.1)
4848

4949

50-
@pytest.mark.skip(reason="https://github.com/ansys/pyfluent/issues/4298")
5150
@pytest.mark.fluent_version(">=25.2")
5251
def test_custom_python_error_via_grpc(datamodel_api_version_new, new_solver_session):
5352
solver = new_solver_session

tests/test_new_meshing_workflow.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,6 @@ def test_scenario_with_common_python_names_from_fdl(new_meshing_session):
16071607
assert len(two_dimensional.task_names()) == len(set(two_dimensional.task_names()))
16081608

16091609

1610-
@pytest.mark.skip("Failing in GitHub")
16111610
@pytest.mark.codegen_required
16121611
@pytest.mark.fluent_version(">=25.1")
16131612
def test_return_state_changes(new_meshing_session):

tests/test_pre_post_session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from ansys.fluent.core.solver.flobject import InactiveObjectError
2828

2929

30-
@pytest.mark.skip(reason="This test works fine locally but fails on CI")
3130
@pytest.mark.fluent_version(">=23.1")
3231
def test_pre_post_session():
3332
file_name = examples.download_file("mixing_elbow.cas.h5", "pyfluent/mixing_elbow")

tests/test_tui_api.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
from ansys.fluent.core.services.datamodel_tui import TUIMenu
3030

3131

32-
@pytest.mark.skip("Failing in github")
3332
def test_report_system_proc_stats_tui(new_solver_session, capsys) -> None:
3433
new_solver_session.tui.report.system.sys_stats()
3534
captured = capsys.readouterr()
@@ -52,7 +51,6 @@ def test_python_keyword_menu_name(new_meshing_session):
5251
meshing.tui.file.import_.cad_options.create_cad_assemblies("yes")
5352

5453

55-
@pytest.mark.skip("Failing in github")
5654
def test_api_upgrade_message(new_solver_session):
5755
solver = new_solver_session
5856
case_name = download_file(

0 commit comments

Comments
 (0)