Skip to content

Commit 5968ec4

Browse files
committed
Merge branch 'feat/update_linux_launcher_261' of https://github.com/ansys/pyansys-geometry into feat/update_linux_launcher_261
2 parents 6c06d86 + 9c9bc34 commit 5968ec4

File tree

12 files changed

+949
-4
lines changed

12 files changed

+949
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2323

2424
- name: Initialize CodeQL
25-
uses: github/codeql-action/init@d3678e237b9c32a6c9bffb3315c335f976f3549f # v3.30.2
25+
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
2626
with:
2727
languages: 'python'
2828
config-file: ./.github/codeql-config.yml
2929

3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@d3678e237b9c32a6c9bffb3315c335f976f3549f # v3.30.2
31+
uses: github/codeql-action/autobuild@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
3232

3333
# If the Autobuild fails above, remove it and uncomment the following three lines.
3434
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
@@ -38,6 +38,6 @@ jobs:
3838
# ./location_of_script_within_repo/buildscript.sh
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@d3678e237b9c32a6c9bffb3315c335f976f3549f # v3.30.2
41+
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
4242
with:
4343
category: "/language:python"

doc/changelog.d/2157.test.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Adding test for vertex and tests based on spaceclaim tutorials
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump github/codeql-action from 3.30.2 to 3.30.3 in the actions group

doc/changelog.d/2226.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
For 261 dotnet 8 is included in core service

src/ansys/geometry/core/connection/product_instance.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,10 @@ def prepare_and_start_backend(
475475
)
476476
# At least dotnet 8.0 is required
477477
# private method and controlled input by library - excluding bandit check.
478-
if subprocess.check_output(["dotnet", "--version"]).decode("utf-8").split(".")[0] < "8": # nosec B607, B603
478+
if (
479+
subprocess.check_output(["dotnet", "--version"]).decode("utf-8").split(".")[0]
480+
< "8"
481+
): # nosec B607, B603
479482
raise RuntimeError(
480483
"Ansys Geometry Core Service requires at least dotnet 8.0. "
481484
"Please install a compatible version."

tests/_incompatible_tests.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ backends:
5454
- tests/integration/test_repair_tools.py::test_design_import_check_geometry
5555
- tests/integration/test_design.py::test_import_component_named_selections
5656
- tests/integration/test_design.py::test_component_make_independent
57+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_combine_example
58+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_pull_example
59+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_intersect_example
5760
# Opening large files through streaming is only available from 25.2 onwards
5861
- tests/integration/test_design.py::test_modeler_open_files
5962
# Named selections elements are only consistent from 25.2 onwards
@@ -65,6 +68,7 @@ backends:
6568
# Components and vertex only available from 26.1 onwards
6669
- tests/integration/test_design.py::test_named_selection_contents
6770
- tests/integration/test_design.py::test_named_selections_components
71+
- tests/integration/test_design.py::test_vertices
6872
# Bounding box center is only available from 25R2 onwards
6973
- tests/integration/test_design.py::test_get_body_bounding_box
7074
# Export to DSCO files is only available from 25R2 onwards
@@ -159,6 +163,9 @@ backends:
159163
- tests/integration/test_repair_tools.py::test_design_import_check_geometry
160164
- tests/integration/test_design.py::test_import_component_named_selections
161165
- tests/integration/test_design.py::test_component_make_independent
166+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_combine_example
167+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_pull_example
168+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_intersect_example
162169
# Opening large files through streaming is only available from 25.2 onwards
163170
- tests/integration/test_design.py::test_modeler_open_files
164171
# Named selections elements are only consistent from 25.2 onwards
@@ -173,6 +180,7 @@ backends:
173180
# Components and vertex only available from 26.1 onwards
174181
- tests/integration/test_design.py::test_named_selection_contents
175182
- tests/integration/test_design.py::test_named_selections_components
183+
- tests/integration/test_design.py::test_vertices
176184
# Bounding box center is only available from 25R2 onwards
177185
- tests/integration/test_design.py::test_get_body_bounding_box
178186
# Export to DSCO files is only available from 25R2 onwards
@@ -214,6 +222,9 @@ backends:
214222
# Model used is too new for this version
215223
- tests/integration/test_design.py::test_import_component_named_selections
216224
- tests/integration/test_design.py::test_component_make_independent
225+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_combine_example
226+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_pull_example
227+
- tests/integration/test_spaceclaim_tutorial_examples.py::test_intersect_example
217228
# Opening large files through streaming is only available from 25.2 onwards
218229
- tests/integration/test_design.py::test_modeler_open_files
219230
# Named selections elements are only consistent from 25.2 onwards
@@ -228,6 +239,7 @@ backends:
228239
# Components and vertex only available from 26.1 onwards
229240
- tests/integration/test_design.py::test_named_selection_contents
230241
- tests/integration/test_design.py::test_named_selections_components
242+
- tests/integration/test_design.py::test_vertices
231243
# Potential problem in model/reading design for importing parameters
232244
- tests/integration/test_design.py::test_design_parameters
233245
# Bounding box center is only available from 25R2 onwards
@@ -287,6 +299,7 @@ backends:
287299
- tests/integration/test_design.py::test_named_selection_contents
288300
- tests/integration/test_design.py::test_named_selections_components
289301
- tests/integration/test_design.py::test_component_make_independent
302+
- tests/integration/test_design.py::test_vertices
290303
# Insert/Import file operations caused problems prior to 26.1
291304
- tests/integration/test_design_export.py::test_import_export_reimport_design_scdocx
292305
- tests/integration/test_design_export.py::test_import_export_reimport_design_x_t
121 KB
Binary file not shown.
3.89 MB
Binary file not shown.
225 KB
Binary file not shown.
5.61 MB
Binary file not shown.

0 commit comments

Comments
 (0)