From 8ed75109cd6017306fe90c42c267c9f6f876a4b0 Mon Sep 17 00:00:00 2001 From: Raphael Luciano Date: Fri, 21 Jul 2023 09:31:15 -0400 Subject: [PATCH 1/2] reenabling test_transcript --- tests/test_streaming_services.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_streaming_services.py b/tests/test_streaming_services.py index 0e5b674014d4..47776bc8fbda 100644 --- a/tests/test_streaming_services.py +++ b/tests/test_streaming_services.py @@ -1,6 +1,5 @@ import time -import pytest from util.solver_workflow import new_solver_session # noqa: F401 from ansys.fluent.core import connect_to_fluent @@ -34,7 +33,6 @@ def run_transcript(i, ip, port, password): return transcript_checked, transcript_passed -@pytest.mark.skip("Skipping for now while investigating Fluent v241, see #1802") def test_transcript(new_solver_session): solver = new_solver_session ip = solver.connection_properties.ip From cb6db52f9eef63b2870a7ded3f4d91bcc617ddd2 Mon Sep 17 00:00:00 2001 From: Raphael Luciano Date: Fri, 21 Jul 2023 10:14:20 -0400 Subject: [PATCH 2/2] using custom testing for test_transcript --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c7c7bb40b41a..c8afd4f543e7 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ unittest-custom: @echo "Running custom unittest" @sudo rm -rf /home/ansys/.local/share/ansys_fluent_core/examples @pip install -r requirements/requirements_tests.txt - @python -m pytest -v -k test_parametric_workflow # Update custom testlist + @python -m pytest -v --no-cov --capture=no -k test_transcript # Update custom testlist unittest-dev-222: @echo "Running unittests"