diff --git a/.github/workflows/automatic_versioning.yml b/.github/workflows/automatic_versioning.yml index 9304a8cb..cf40d5b1 100644 --- a/.github/workflows/automatic_versioning.yml +++ b/.github/workflows/automatic_versioning.yml @@ -57,6 +57,7 @@ jobs: echo "Testing if this version is the fallback version from pyproject.toml ..." if [[ "$uninstalled_version" != "$fallback_version" ]]; then + echo "Version $uninstalled_version not equal to $fallback_version" exit 1 else echo "... yes!" @@ -95,6 +96,7 @@ jobs: echo "Testing if this is the fallback version from pyproject.toml ..." if [[ "$installed_version" != "$fallback_version" ]]; then + echo "Version $installed_version not equal to $fallback_version" exit 1 else echo "... yes!" @@ -102,6 +104,7 @@ jobs: echo "Checking if the version imported from eessi.testsuite matches that from the version file ..." if [[ "$versionfile_version" != "$installed_version" ]]; then + echo "Version $versionfile_version not equal to $installed_version" exit 1 else echo "... yes!" diff --git a/.github/workflows/pip_install.yml b/.github/workflows/pip_install.yml index fe00993d..5e37f892 100644 --- a/.github/workflows/pip_install.yml +++ b/.github/workflows/pip_install.yml @@ -73,6 +73,7 @@ jobs: echo "Checking if the version imported from eessi.testsuite matches that from the version file ..." if [[ "$versionfile_version" != "$testsuite_version" ]]; then + echo "Version $versionfile_version not equal to $testsuite_version" exit 1 else echo "... yes!" @@ -111,6 +112,7 @@ jobs: echo "Checking if the version imported from eessi.testsuite matches that from the version file ..." if [[ "$githttps_versionfile_version" != "$githttps_testsuite_version" ]]; then + echo "Version $githttps_versionfile_version not equal to $githttps_testsuite_version" exit 1 else echo "... yes!" @@ -118,6 +120,7 @@ jobs: echo "Checking if the version import from a regular pip install and the git+https based install are the same ..." if [[ "$githttps_testsuite_version" != "$testsuite_version" ]]; then + echo "Version $githttps_testsuite_version not equal to $testsuite_version" exit 1 else echo "... yes!"