Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,17 @@ jobs:
PYFLUENT_START_INSTANCE: 0
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}

- name: Zip 23.1 Coverage Results before upload
run: |
sudo apt install zip -y
zip -r cov.zip cov_html

- name: Upload 23.1 Coverage Results
if: matrix.image-tag == 'v23.1.0'
uses: actions/upload-artifact@v3
with:
name: HTML-Coverage-tag-231
path: cov_html
path: cov.zip
retention-days: 7

release:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ unittest: unittest-dev-231
unittest-dev-222:
@echo "Running unittests"
@pip install -r requirements/requirements_tests.txt
@python -m pytest -v -m "dev and not fluent_231" --cov=ansys.fluent --cov-report html:cov_html --cov-config=.coveragerc
@python -m pytest -v -m "dev and not fluent_231 and not fluent_232" --cov=ansys.fluent --cov-report html:cov_html --cov-config=.coveragerc

unittest-dev-231:
@echo "Running unittests"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ markers = [
"nightly: Tests that run under nightly CI",
"fluent_222: Tests that run only with Fluent 22.2",
"fluent_231: Tests that run only with Fluent 23.1",
"fluent_232: Tests that run only with Fluent 23.2",
]


Expand Down