-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #306 from reportportal/develop
Release
- Loading branch information
Showing
7 changed files
with
174 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,119 @@ | ||
name: Release Pytest agent | ||
|
||
on: | ||
release: | ||
types: [published] | ||
push: | ||
branches: ['master'] | ||
paths-ignore: | ||
- '.github/**' | ||
- CHANGELOG.md | ||
- README.rst | ||
- CONTRIBUTING.rst | ||
|
||
env: | ||
VERSION_FILE: setup.py | ||
VERSION_EXTRACT_PATTERN: >- | ||
__version__\s*=\s*'([^']+) | ||
VERSION_REPLACE_PATTERN: >- | ||
__version__ = '\1' | ||
TMP_SUFFIX: _updated | ||
CHANGE_LOG_FILE: CHANGELOG.md | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.6' | ||
- name: Install dependencies | ||
run: python -m pip install --upgrade pip setuptools wheel | ||
- name: Build package | ||
run: python setup.py sdist bdist_wheel | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: ${{ secrets.PYPI_USERNAME }} | ||
password: ${{ secrets.PYPI_PASSWORD }} | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Generate versions | ||
uses: HardNorth/[email protected] | ||
with: | ||
version-source: file | ||
version-file: ${{ env.VERSION_FILE }} | ||
version-file-extraction-pattern: ${{ env.VERSION_EXTRACT_PATTERN }} | ||
|
||
- name: Setup git credentials | ||
uses: oleksiyrudenko/gha-git-credentials@v2 | ||
with: | ||
name: 'reportportal.io' | ||
email: '[email protected]' | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Tagging new version | ||
id: newVersionTag | ||
run: | | ||
git tag -a ${{ env.RELEASE_VERSION }} -m "Release ${{ env.RELEASE_VERSION }}" | ||
git push --tags | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.6' | ||
|
||
- name: Install dependencies | ||
run: python -m pip install --upgrade pip setuptools wheel | ||
|
||
- name: Build package | ||
run: python setup.py sdist bdist_wheel | ||
|
||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: ${{ secrets.PYPI_USERNAME }} | ||
password: ${{ secrets.PYPI_PASSWORD }} | ||
|
||
- name: Checkout develop branch | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: 'develop' | ||
fetch-depth: 0 | ||
|
||
- name: Update CHANGELOG.md | ||
id: changelogUpdate | ||
run: | | ||
sed '/\[Unreleased\]/q' ${{ env.CHANGE_LOG_FILE }} >> ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} | ||
sed -E '1,/#?#\s*\[Unreleased\]/d' ${{ env.CHANGE_LOG_FILE }} | sed -E '/#?#\s*\[/q' | \ | ||
{ echo -e '\n## [${{ env.RELEASE_VERSION }}]'; sed '$d'; } >> ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} | ||
grep -E '#?#\s*\[[0-9]' ${{ env.CHANGE_LOG_FILE }} | head -n1 >> ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} | ||
sed -E '1,/#?#\s*\[[0-9]/d' ${{ env.CHANGE_LOG_FILE }} >> ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} | ||
rm ${{ env.CHANGE_LOG_FILE }} | ||
mv ${{ env.CHANGE_LOG_FILE }}${{ env.TMP_SUFFIX }} ${{ env.CHANGE_LOG_FILE }} | ||
git add ${{ env.CHANGE_LOG_FILE }} | ||
git commit -m "Changelog update" | ||
- name: Read changelog Entry | ||
id: readChangelogEntry | ||
uses: mindsers/[email protected] | ||
with: | ||
version: ${{ env.RELEASE_VERSION }} | ||
path: ./${{ env.CHANGE_LOG_FILE }} | ||
|
||
- name: Create Release | ||
id: createRelease | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.RELEASE_VERSION }} | ||
release_name: Release ${{ env.RELEASE_VERSION }} | ||
body: ${{ steps.readChangelogEntry.outputs.log_entry }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Merge release branch into develop | ||
id: mergeIntoDevelop | ||
run: | | ||
git merge -m 'Merge master branch into develop after a release' origin/master | ||
git status | (! grep -Fq 'both modified:') || git status | grep -F 'both modified:' \ | ||
| { echo -e 'Unable to merge master into develop, merge conflicts:'; (! grep -Eo '[^ ]+$') } | ||
- name: Update version file | ||
id: versionFileUpdate | ||
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 }} | ||
rm ${{ env.VERSION_FILE }} | ||
mv ${{ env.VERSION_FILE }}${{ env.TMP_SUFFIX }} ${{ env.VERSION_FILE }} | ||
git add ${{ env.VERSION_FILE }} | ||
git commit -m "Version update" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
### Fixed | ||
- Issue [#304](https://github.com/reportportal/agent-python-pytest/issues/304): | ||
SSL certificate flag handling issue, by @HardNorth | ||
|
||
## [5.1.0] | ||
### Changed | ||
- Agent complete rewrite, by @HardNorth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (c) 2022 https://reportportal.io . | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License | ||
|
||
import pytest | ||
from pytest_reportportal.config import AgentConfig | ||
|
||
|
||
@pytest.mark.parametrize( | ||
['verify_ssl', 'expected_result'], | ||
[ | ||
('True', True), | ||
('False', False), | ||
('true', True), | ||
('false', False), | ||
(True, True), | ||
(False, False), | ||
('path/to/certificate', 'path/to/certificate'), | ||
(None, True) | ||
] | ||
) | ||
def test_verify_ssl_true(mocked_config, verify_ssl, expected_result): | ||
mocked_config.getini.side_effect = \ | ||
lambda x: verify_ssl if x == 'rp_verify_ssl' else None | ||
config = AgentConfig(mocked_config) | ||
|
||
assert config.rp_verify_ssl == expected_result |