Skip to content

Commit 05cad01

Browse files
authored
Merge branch 'main' into feat/inspect_repair_results
2 parents 47430a1 + 3a3b2a6 commit 05cad01

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ For contributing to this project, please refer to the [PyAnsys Developer's Guide
1313
Further information about contributing to PyAnsys Geometry can be found in [Contributing].
1414

1515
[PyAnsys Developer's Guide]: https://dev.docs.pyansys.com/index.html
16-
[Contributing]: https://geometry.docs.pyansys.com/dev/contributing.html
16+
[Contributing]: https://geometry.docs.pyansys.com/version/dev/contributing.html

doc/changelog.d/1711.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
re enable fmd tests

doc/changelog.d/1728.dependencies.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bump ansys-sphinx-theme[autoapi] from 1.3.0 to 1.3.1 in the docs-deps group

doc/changelog.d/1729.dependencies.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bump ansys-api-geometry from 0.4.35 to 0.4.36

doc/changelog.d/1730.documentation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
update CONTRIBUTING.md

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525

2626
dependencies = [
27-
"ansys-api-geometry==0.4.35",
27+
"ansys-api-geometry==0.4.36",
2828
"ansys-tools-path>=0.3,<1",
2929
"ansys-tools-visualization-interface>=0.2.6,<1",
3030
"attrs!=24.3.0",
@@ -79,7 +79,7 @@ tests-minimal = [
7979
"pytest-xvfb==3.0.0",
8080
]
8181
doc = [
82-
"ansys-sphinx-theme[autoapi]==1.3.0",
82+
"ansys-sphinx-theme[autoapi]==1.3.1",
8383
"ansys-tools-path==0.7.1",
8484
"ansys-tools-visualization-interface==0.8.1",
8585
"beartype==0.19.0",

tests/integration/test_design.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -985,16 +985,16 @@ def test_download_file(modeler: Modeler, tmp_path_factory: pytest.TempPathFactor
985985
design.download(iges_file, format=DesignFileFormat.IGES)
986986
assert iges_file.exists()
987987

988-
# FMD
989-
fmd_file = tmp_path_factory.mktemp("scdoc_files_download") / "cylinder.fmd"
990-
design.download(fmd_file, format=DesignFileFormat.FMD)
991-
assert fmd_file.exists()
992-
993988
# Linux backend...
994989
else:
995990
binary_parasolid_file = tmp_path_factory.mktemp("scdoc_files_download") / "cylinder.xmt_bin"
996991
text_parasolid_file = tmp_path_factory.mktemp("scdoc_files_download") / "cylinder.xmt_txt"
997992

993+
# FMD
994+
fmd_file = tmp_path_factory.mktemp("scdoc_files_download") / "cylinder.fmd"
995+
design.download(fmd_file, format=DesignFileFormat.FMD)
996+
assert fmd_file.exists()
997+
998998
# PMDB
999999
pmdb_file = tmp_path_factory.mktemp("scdoc_files_download") / "cylinder.pmdb"
10001000

tests/integration/test_design_export.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@ def test_export_to_iges(modeler: Modeler, tmp_path_factory: pytest.TempPathFacto
311311

312312
def test_export_to_fmd(modeler: Modeler, tmp_path_factory: pytest.TempPathFactory):
313313
"""Test exporting a design to FMD format."""
314-
skip_if_core_service(modeler, test_export_to_fmd.__name__, "fmd_export")
315314

316315
# Create a demo design
317316
design = _create_demo_design(modeler)

0 commit comments

Comments
 (0)