diff --git a/.github/azure-pipelines.yaml b/.github/azure-pipelines.yaml index 54c34f7..4d9f73d 100644 --- a/.github/azure-pipelines.yaml +++ b/.github/azure-pipelines.yaml @@ -17,3 +17,4 @@ extends: REPO_NAME: pyhyp GCC_CONFIG: config/defaults/config.LINUX_GFORTRAN_OPENMPI.mk INTEL_CONFIG: config/defaults/config.LINUX_INTEL_OPENMPI.mk + COVERAGE: true diff --git a/.github/test_real.sh b/.github/test_real.sh index ad82da3..9820758 100755 --- a/.github/test_real.sh +++ b/.github/test_real.sh @@ -2,7 +2,8 @@ set -e cd tests ./ref/get-ref-files.sh -testflo . -v -n 1 +testflo . -v -n 1 --coverage --coverpkg pyhyp cd ../examples ls -l */*.cgns + diff --git a/pyhyp/__init__.py b/pyhyp/__init__.py index 808e328..7a16c95 100644 --- a/pyhyp/__init__.py +++ b/pyhyp/__init__.py @@ -1,3 +1,3 @@ -__version__ = "2.4.0" +__version__ = "2.5.0" from .pyHyp import pyHyp, pyHypMulti