@@ -492,20 +492,22 @@ def test_18d_delete_setup(self):
492
492
self .aedtapp .delete_setup (setup_name )
493
493
assert setuptd .name not in self .aedtapp .existing_analysis_setups
494
494
495
- def test_19A_validate (self ):
495
+ def test_19a_validate (self ):
496
496
assert self .aedtapp .validate_full_design ()
497
497
498
- def test_19D_export_to_hfss (self ):
498
+ def test_19d_export_to_hfss (self ):
499
499
self .aedtapp .save_project ()
500
500
filename = "export_to_hfss_test"
501
501
filename2 = "export_to_hfss_test2"
502
502
file_fullname = os .path .join (self .local_scratch .path , filename )
503
503
file_fullname2 = os .path .join (self .local_scratch .path , filename2 )
504
504
setup = self .aedtapp .get_setup (self .aedtapp .existing_analysis_setups [0 ])
505
505
assert setup .export_to_hfss (output_file = file_fullname )
506
- assert setup .export_to_hfss (output_file = file_fullname2 , keep_net_name = True )
506
+ if not is_linux :
507
+ # TODO: EDB failing in Linux
508
+ assert setup .export_to_hfss (output_file = file_fullname2 , keep_net_name = True )
507
509
508
- def test_19E_export_to_q3d (self ):
510
+ def test_19e_export_to_q3d (self ):
509
511
filename = "export_to_q3d_test"
510
512
file_fullname = os .path .join (self .local_scratch .path , filename )
511
513
setup = self .aedtapp .get_setup (self .aedtapp .existing_analysis_setups [0 ])
@@ -652,6 +654,7 @@ def test_41_test_create_polygon(self):
652
654
653
655
@pytest .mark .skipif (not config ["use_grpc" ], reason = "Not running in COM mode" )
654
656
@pytest .mark .skipif (config ["desktopVersion" ] < "2023.2" , reason = "Working only from 2023 R2" )
657
+ @pytest .mark .skipif (is_linux , reason = "PyEDB failing in Linux" )
655
658
def test_42_post_processing (self , add_app ):
656
659
test_post1 = add_app (project_name = test_post , application = Maxwell3d , subfolder = test_subfolder )
657
660
assert test_post1 .post .create_fieldplot_layers (
@@ -705,6 +708,7 @@ def test_42_post_processing(self, add_app):
705
708
self .aedtapp .close_project (test_post2 .project_name )
706
709
707
710
@pytest .mark .skipif (config ["desktopVersion" ] < "2023.2" , reason = "Working only from 2023 R2" )
711
+ @pytest .mark .skipif (is_linux , reason = "PyEDB failing in Linux" )
708
712
def test_42_post_processing_3d_layout (self , add_app ):
709
713
test = add_app (
710
714
project_name = "test_post_3d_layout_solved_23R2" , application = Hfss3dLayout , subfolder = test_subfolder
@@ -820,6 +824,7 @@ def test_96_change_nets_visibility(self, add_app):
820
824
assert not hfss3d .modeler .change_net_visibility (visible = "" )
821
825
assert not hfss3d .modeler .change_net_visibility (visible = 0 )
822
826
827
+ @pytest .mark .skipif (is_linux , reason = "PyEDB failing in Linux" )
823
828
def test_96_2_report_design (self ):
824
829
report = AnsysReport ()
825
830
report .create ()
0 commit comments