diff --git a/.github/workflows/generate-python-sdk.yml b/.github/workflows/generate-python-sdk.yml index 7b54744..6153074 100644 --- a/.github/workflows/generate-python-sdk.yml +++ b/.github/workflows/generate-python-sdk.yml @@ -114,6 +114,6 @@ jobs: cd $SDK_REPO_DIR gh pr create \ --title "Auto-generated SDK" \ - --body "This PR includes the autogenerated SDKs." \ + --body "This PR includes the autogenerated SDKs. ${{ github.ref_name }}" \ --head "${{ github.ref_name }}" \ --base "${{ inputs.python_sdk_pr_base_branch }}" \ No newline at end of file diff --git a/sdk-blueprints/python/generate-package.sh b/sdk-blueprints/python/generate-package.sh index a5bfdaa..9da6a2e 100755 --- a/sdk-blueprints/python/generate-package.sh +++ b/sdk-blueprints/python/generate-package.sh @@ -20,7 +20,7 @@ output_api_dir="$4/$package_name" templates_dir="$blueprints_dir/templates" # Extract the specification version -spec_version="0.0.105" +spec_version="0.0.106" echo "Generating Visier API $package_name $spec_version $spec_file" diff --git a/sdk-blueprints/python/run-tests.sh b/sdk-blueprints/python/run-tests.sh index 2f00c83..db76043 100755 --- a/sdk-blueprints/python/run-tests.sh +++ b/sdk-blueprints/python/run-tests.sh @@ -16,7 +16,7 @@ SEARCH_PATH=$1 # Find directories matching the pattern and run tox tests while IFS= read -r dir; do cd "$dir" - if ! tox -p 3; then + if ! tox -p 2; then error_flag=1 fi cd - > /dev/null