Skip to content

Commit 8c72203

Browse files
FEAT: make q23d tests independent (#6894)
Co-authored-by: pyansys-ci-bot <[email protected]>
1 parent f5adc6a commit 8c72203

File tree

9 files changed

+332
-543
lines changed

9 files changed

+332
-543
lines changed

doc/changelog.d/6894.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Make q23d tests independent

src/ansys/aedt/core/q3d.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def export_matrix_data(
730730
return False
731731
try:
732732
self.odesign.ExportMatrixData(
733-
file_name,
733+
str(file_name),
734734
problem_type,
735735
variations,
736736
analysis_setup,
@@ -755,7 +755,7 @@ def export_matrix_data(
755755
else:
756756
try:
757757
self.odesign.ExportMatrixData(
758-
file_name,
758+
str(file_name),
759759
problem_type,
760760
variations,
761761
analysis_setup,
@@ -1178,7 +1178,7 @@ def export_equivalent_circuit(
11781178
self.oanalysis.ExportCircuit(
11791179
analysis_setup,
11801180
variations,
1181-
output_file,
1181+
str(output_file),
11821182
export_circuit_context,
11831183
model,
11841184
frequency,
-570 KB
Binary file not shown.
-631 KB
Binary file not shown.

tests/system/general/test_30_Q2D.py

Lines changed: 164 additions & 171 deletions
Large diffs are not rendered by default.

tests/system/general/test_36_Q2D_PostProcessing.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)