X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Ftests%2FTest%2Ftutorial_1.py;h=253d6bf1f73456b0c2f24df7218a98395648777e;hb=refs%2Ftags%2FV9_13_0b1;hp=54ccc615ddd9137f9fa94d3a8211b661a4d805b4;hpb=79d61321d3b54e2c9122842081dfdad54c81d7b4;p=modules%2Fhomard.git diff --git a/src/tests/Test/tutorial_1.py b/src/tests/Test/tutorial_1.py index 54ccc615..253d6bf1 100755 --- a/src/tests/Test/tutorial_1.py +++ b/src/tests/Test/tutorial_1.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2011-2016 CEA/DEN, EDF R&D +# Copyright (C) 2011-2024 CEA, EDF # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -21,7 +21,7 @@ Python script for HOMARD Test tutorial_1 associe au tutorial 1 """ -__revision__ = "V4.05" +__revision__ = "V4.07" #======================================================================== TEST_NAME = "tutorial_1" @@ -38,21 +38,14 @@ REP_PYTHON = os.path.join(PATH_HOMARD, "bin", "salome", "test", "HOMARD") REP_PYTHON = os.path.normpath(REP_PYTHON) sys.path.append(REP_PYTHON) from test_util import get_dir -from test_util import get_dir_tutorial from test_util import test_results # ================================== # Répertoires pour ce test REP_DATA, DIRCASE = get_dir(PATH_HOMARD, TEST_NAME, DEBUG) -DATA_TUTORIAL = get_dir_tutorial(PATH_HOMARD) -# ================================== -sys.path.append(DATA_TUTORIAL) -from tutorial_util import gzip_gunzip -# ================================== -gzip_gunzip(DATA_TUTORIAL, 1, -1) # ================================== # import salome -salome.salome_init() +salome.salome_init_without_session() import HOMARD import iparameters IPAR = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1)) @@ -140,7 +133,7 @@ while not ERREUR : assert HOMARD is not None, "Impossible to load homard engine" HOMARD.SetLanguageShort("fr") # - FICMED = os.path.join(DATA_TUTORIAL, TEST_NAME+".00.med") + FICMED = os.path.join(REP_DATA, TEST_NAME+".00.med") try: ERREUR, MESSAGE = homard_exec("MAILL", FICMED, DEBUG) except RuntimeError as eee: @@ -162,9 +155,6 @@ while not ERREUR : if ERREUR: raise Exception(MESSAGE) # -# ================================== -gzip_gunzip(DATA_TUTORIAL, 1, 1) -# ================================== # if salome.sg.hasDesktop(): salome.sg.updateObjBrowser()