Skip to content

Commit

Permalink
Merge pull request #251 from reportportal/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
HardNorth authored Dec 19, 2024
2 parents 83f44cc + 7578080 commit a659a03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: |
export CURRENT_VERSION_VALUE=`echo '${{ env.CURRENT_VERSION }}' | sed -E 's/(.*)/${{ env.VERSION_REPLACE_PATTERN }}/'`
export NEXT_VERSION_VALUE=`echo '${{ env.NEXT_VERSION }}' | sed -E 's/(.*)/${{ env.VERSION_REPLACE_PATTERN }}/'`
sed 's/${CURRENT_VERSION_VALUE}/${NEXT_VERSION_VALUE}/g' ${{ env.VERSION_FILE }} > ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }}
sed "s/${CURRENT_VERSION_VALUE}/${NEXT_VERSION_VALUE}/g" ${{ env.VERSION_FILE }} > ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }}
rm ${{ env.VERSION_FILE }}
mv ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }} ${{ env.VERSION_FILE }}
git add ${{ env.VERSION_FILE }}
Expand Down
2 changes: 1 addition & 1 deletion tests/logs/test_rp_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from reportportal_client.core.rp_file import RPFile


@pytest.mark.parametrize(["name"], [[""], [None], [" "]])
@pytest.mark.parametrize(["name"], [("",), (None,), (" ",)])
def test_rp_file_name_should_not_be_empty(name):
file = RPFile(name, b'{"test": true}', "application/json")

Expand Down

0 comments on commit a659a03

Please sign in to comment.