X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Ftests%2FTest%2Ftutorial_3.py;h=2576433d27d961a05d05d917965a73aca2fbcd92;hb=fc2e7857f2588dda1d55fd7203965eb08458b642;hp=c207e2777f0a2073416820f8ed654e0e599f1620;hpb=006b17c64a532b9b00f44ea9ef1605653cbcbf2f;p=modules%2Fhomard.git diff --git a/src/tests/Test/tutorial_3.py b/src/tests/Test/tutorial_3.py index c207e277..2576433d 100755 --- a/src/tests/Test/tutorial_3.py +++ b/src/tests/Test/tutorial_3.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2011-2016 CEA/DEN, EDF R&D +# Copyright (C) 2011-2019 CEA/DEN, EDF R&D # # 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_3 associe au tutorial 3 """ -__revision__ = "V4.03" +__revision__ = "V4.06" #======================================================================== TEST_NAME = "tutorial_3" @@ -30,8 +30,6 @@ N_ITER_TEST_FILE = 2 #======================================================================== import os import sys -import HOMARD -import salome # # ================================== PATH_HOMARD = os.getenv('HOMARD_ROOT_DIR') @@ -40,18 +38,18 @@ 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, DATA_TUTORIAL = get_dir(PATH_HOMARD, TEST_NAME, DEBUG) -# ================================== -sys.path.append(DATA_TUTORIAL) -from tutorial_util import gzip_gunzip +REP_DATA, DIRCASE = get_dir(PATH_HOMARD, TEST_NAME, DEBUG) +DATA_TUTORIAL = get_dir_tutorial(PATH_HOMARD) # ================================== -gzip_gunzip(DATA_TUTORIAL, 3, -1) -# ================================== - +# +import salome salome.salome_init() +import HOMARD +# import iparameters IPAR = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1)) IPAR.append("AP_MODULES_LIST", "Homard") @@ -68,7 +66,7 @@ Python script for HOMARD # while not erreur : # - HOMARD.SetCurrentStudy(salome.myStudy) + # HOMARD.UpdateStudy() # # Hypotheses # ========== @@ -204,11 +202,7 @@ while not ERREUR : if ERREUR: raise Exception(MESSAGE) # -# ================================== -gzip_gunzip(DATA_TUTORIAL, 3, 1) -# ================================== -# if salome.sg.hasDesktop(): - salome.sg.updateObjBrowser(True) + salome.sg.updateObjBrowser() iparameters.getSession().restoreVisualState(1)