diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6be3bf2..3150932 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,9 +25,9 @@ on: env: VERSION_FILE: setup.py VERSION_EXTRACT_PATTERN: >- - __version__\s*=\s*'([^']+) + __version__\s*=\s*"([^"]+) VERSION_REPLACE_PATTERN: >- - __version__ = '\1' + __version__ = "\1" TMP_SUFFIX: _updated CHANGE_LOG_FILE: CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 675bbc0..7f02b05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog ## [Unreleased] +### Added +- Issue [#357](https://github.com/reportportal/agent-python-pytest/issues/357) `pytest-bdd` support, by @HardNorth +### Fixed +- Issue [#389](https://github.com/reportportal/agent-python-pytest/issues/389) `rp_tests_attributes` configuration parameter handling, by @HardNorth +- Issue [#390](https://github.com/reportportal/agent-python-pytest/issues/390) INTERNALERROR due to pytest.exit within fixture, by @HardNorth ### Removed - `Python 3.7` support, by @HardNorth diff --git a/tests/helpers/utils.py b/tests/helpers/utils.py index babb799..f492da7 100644 --- a/tests/helpers/utils.py +++ b/tests/helpers/utils.py @@ -120,7 +120,7 @@ def item_id_gen(**kwargs): return "{}-{}-{}".format(kwargs["name"], str(round(time.time() * 1000)), random.randint(0, 9999)) -def project_settings(**kwargs): +def project_settings(**_): return DEFAULT_PROJECT_SETTINGS