Skip to content

Commit 002d456

Browse files
authored
Merge branch 'main' into fix/optional-import-component-groups
2 parents fd0a81f + bdd4a7c commit 002d456

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+282
-57
lines changed

.github/workflows/backwards_compatibility.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ jobs:
4242
backend-version: "24.1"
4343
- image-tag: "windows-24.2"
4444
backend-version: "24.2"
45-
- image-tag: "windows-25.1"
46-
backend-version: "25.1"
45+
# TODO: This has to be reverted once the issue with 25.1 has been solved
46+
# https://github.com/ansys/pyansys-geometry/issues/2167
47+
# - image-tag: "windows-25.1"
48+
# backend-version: "25.1"
4749
- image-tag: "core-windows-25.2"
4850
backend-version: "25.2"
4951
steps:
@@ -99,6 +101,7 @@ jobs:
99101
python -c "from ansys.geometry.core.connection.validate import validate; validate()"
100102
101103
- name: Testing
104+
timeout-minutes: 20 # On Windows self-hosted runners, sometimes hangs...
102105
run: |
103106
.\.venv\Scripts\Activate.ps1
104107
pytest -v --backwards-compatibility=yes --backend-version=${{ matrix.backend-version }} -rf

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ jobs:
264264

265265
- name: Testing
266266
if: env.SKIP_UNSTABLE == 'false'
267+
timeout-minutes: 20 # On Windows self-hosted runners, sometimes hangs...
267268
run: |
268269
.\.venv\Scripts\Activate.ps1
269270
pytest -v
@@ -781,6 +782,7 @@ jobs:
781782
python -c "from ansys.geometry.core.connection.validate import validate; validate()"
782783
783784
- name: Testing
785+
timeout-minutes: 20 # On Windows self-hosted runners, sometimes hangs...
784786
run: |
785787
.\.venv\Scripts\Activate.ps1
786788
pytest -v --use-existing-service=yes

.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@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
25+
uses: github/codeql-action/init@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
2626
with:
2727
languages: 'python'
2828
config-file: ./.github/codeql-config.yml
2929

3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
31+
uses: github/codeql-action/autobuild@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
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@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
41+
uses: github/codeql-action/analyze@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.9
4242
with:
4343
category: "/language:python"

.github/workflows/nightly_docker_test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ jobs:
141141
python -c "from ansys.geometry.core.connection.validate import validate; validate()"
142142
143143
- name: Run PyAnsys Geometry tests
144+
timeout-minutes: 20 # On Windows self-hosted runners, sometimes hangs...
144145
run: |
145146
.\.venv\Scripts\Activate.ps1
146147
pytest -v

doc/changelog.d/2104.added.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/2108.test.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/2109.test.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/2116.maintenance.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/2117.dependencies.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

doc/changelog.d/2118.added.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)