Skip to content

Commit 456e2cf

Browse files
authored
Merge branch 'master' into feat/add_operator_alias
2 parents 33b5b49 + 7917c7b commit 456e2cf

File tree

5 files changed

+31
-15
lines changed

5 files changed

+31
-15
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
python_version:
88
required: false
99
type: string
10-
default: "3.10"
10+
default: "3.11"
1111
ANSYS_VERSION:
1212
required: false
1313
type: string
@@ -29,7 +29,7 @@ on:
2929
description: "Python interpreter"
3030
required: true
3131
type: string
32-
default: "3.10"
32+
default: "3.11"
3333
ANSYS_VERSION:
3434
description: "ANSYS version"
3535
required: true

.github/workflows/test_docker.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,3 +229,11 @@ jobs:
229229
token: ${{ secrets.CODECOV_TOKEN }} # required
230230
name: ${{ env.PACKAGE_NAME }}_${{ matrix.python-version }}_${{ matrix.os }}_pytest_${{ inputs.ANSYS_VERSION }}_docker.xml
231231
flags: docker,${{ inputs.ANSYS_VERSION }},${{ matrix.os }},${{ matrix.python-version }}
232+
233+
- name: "Upload test analytics results to Codecov"
234+
if: ${{ !cancelled() }}
235+
uses: codecov/test-results-action@v1
236+
with:
237+
token: ${{ secrets.CODECOV_TOKEN }}
238+
name: test_results_${{ env.PACKAGE_NAME }}_${{ matrix.python-version }}_${{ matrix.os }}_${{ inputs.ANSYS_VERSION }}${{ inputs.test_any == 'true' && '_any' || '' }}
239+
flags: ${{ inputs.ANSYS_VERSION }},${{ matrix.os }},${{ matrix.python-version }}${{ inputs.test_any == 'true' && ',any' || '' }}

.github/workflows/tests.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,3 +309,11 @@ jobs:
309309
file: ./.tox/.cov/coverage.xml
310310
name: ${{ env.PACKAGE_NAME }}_${{ matrix.python-version }}_${{ matrix.os }}_pytest_${{ inputs.ANSYS_VERSION }}${{ inputs.test_any == 'true' && '_any' || '' }}.xml
311311
flags: ${{ inputs.ANSYS_VERSION }},${{ matrix.os }},${{ matrix.python-version }}${{ inputs.test_any == 'true' && ',any' || '' }}
312+
313+
- name: "Upload test analytics results to Codecov"
314+
if: ${{ !cancelled() }}
315+
uses: codecov/test-results-action@v1
316+
with:
317+
token: ${{ secrets.CODECOV_TOKEN }}
318+
name: test_results_${{ env.PACKAGE_NAME }}_${{ matrix.python-version }}_${{ matrix.os }}_${{ inputs.ANSYS_VERSION }}${{ inputs.test_any == 'true' && '_any' || '' }}
319+
flags: ${{ inputs.ANSYS_VERSION }},${{ matrix.os }},${{ matrix.python-version }}${{ inputs.test_any == 'true' && ',any' || '' }}

doc/source/getting_started/dpf_server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ simulation workflow.
1111
The DPF Server is packaged within the **Ansys installer** in Ansys 2021 R1 and later.
1212

1313
It is also available as a standalone package that contains all the necessary files to run, enabling DPF capabilities.
14-
The standalone DPF Server is available on the `DPF Pre-Release page <https://download-archive.ansys.com/Others/DPF%20Pre-Release>`_ of the Ansys Customer Portal.
14+
The standalone DPF Server is available on the `DPF Pre-Release page <https://download.ansys.com/Others/DPF%20Pre-Release>`_ of the Ansys Customer Portal.
1515
The first standalone version of DPF Server available is 6.0 (2023 R2).
1616

1717
The sections on this page describe how to install and use a standalone DPF Server.

tox.ini

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -140,18 +140,18 @@ setenv =
140140
DEBUG = -v -s --durations=10 --durations-min=1.0
141141
COVERAGE_FILE = {work_dir}/.cov/.coverage.{env_name}
142142

143-
api: JUNITXML = --junitxml=tests/junit/test-results.xml
144-
launcher: JUNITXML = --junitxml=tests/junit/test-results2.xml
145-
server: JUNITXML = --junitxml=tests/junit/test-results3.xml
146-
local_server: JUNITXML = --junitxml=tests/junit/test-results4.xml
147-
multi_server: JUNITXML = --junitxml=tests/junit/test-results5.xml
148-
remote_workflow: JUNITXML = --junitxml=tests/junit/test-results6.xml
149-
remote_operator: JUNITXML = --junitxml=tests/junit/test-results7.xml
150-
workflow: JUNITXML = --junitxml=tests/junit/test-results8.xml
151-
service: JUNITXML = --junitxml=tests/junit/test-results9.xml
152-
api_entry: JUNITXML = --junitxml=tests/junit/test-results10.xml
153-
custom_type_field: JUNITXML = --junitxml=tests/junit/test-results11.xml
154-
operators: JUNITXML = --junitxml=tests/junit/test-results12.xml
143+
api: JUNITXML = --junitxml=tests/junit/test-results.xml -o junit_family=legacy
144+
launcher: JUNITXML = --junitxml=tests/junit/test-results2.xml -o junit_family=legacy
145+
server: JUNITXML = --junitxml=tests/junit/test-results3.xml -o junit_family=legacy
146+
local_server: JUNITXML = --junitxml=tests/junit/test-results4.xml -o junit_family=legacy
147+
multi_server: JUNITXML = --junitxml=tests/junit/test-results5.xml -o junit_family=legacy
148+
remote_workflow: JUNITXML = --junitxml=tests/junit/test-results6.xml -o junit_family=legacy
149+
remote_operator: JUNITXML = --junitxml=tests/junit/test-results7.xml -o junit_family=legacy
150+
workflow: JUNITXML = --junitxml=tests/junit/test-results8.xml -o junit_family=legacy
151+
service: JUNITXML = --junitxml=tests/junit/test-results9.xml -o junit_family=legacy
152+
api_entry: JUNITXML = --junitxml=tests/junit/test-results10.xml -o junit_family=legacy
153+
custom_type_field: JUNITXML = --junitxml=tests/junit/test-results11.xml -o junit_family=legacy
154+
operators: JUNITXML = --junitxml=tests/junit/test-results12.xml -o junit_family=legacy
155155

156156
# Tests sets
157157
api: PYTEST_PYTHON_FILES = tests

0 commit comments

Comments
 (0)