Skip to content

Commit

Permalink
FIx CIrcuit and LInux compatibility in 2024R1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuelopez-ansys committed Apr 25, 2024
1 parent 8790fe3 commit b4955aa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _unittest/test_21_Circuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ def test_19b_create_eye_setups(self):
setup_name = "Dom_AMI"
assert self.aedtapp.create_setup(setup_name, "NexximAMI")

@pytest.mark.skipif(is_linux and config["desktopVersion"] == "2024.1", reason="Project with multiple Circuit designs not valid")
@pytest.mark.skipif(
is_linux and config["desktopVersion"] == "2024.1", reason="Project with multiple Circuit designs not valid"
)
def test_20a_create_ami_plots(self, add_app):
ami_design = add_app(ami_project, design_name="Models Init Only", application=Circuit, subfolder=test_subfolder)

Expand Down Expand Up @@ -497,7 +499,6 @@ def test_38_browse_log_file(self):
self.aedtapp.modeler.components.create_interface_port("net_10", (0.01, 0))
lna = self.aedtapp.create_setup("mylna", self.aedtapp.SETUPS.NexximLNA)
lna.props["SweepDefinition"]["Data"] = "LINC 0Hz 1GHz 101"

assert not self.aedtapp.browse_log_file()
self.aedtapp.analyze()
time.sleep(2)
Expand Down

0 comments on commit b4955aa

Please sign in to comment.