Skip to content

Commit 4141698

Browse files
authored
Merge pull request #392 from reportportal/develop
Release
2 parents 3806e10 + d405e71 commit 4141698

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ on:
2525
env:
2626
VERSION_FILE: setup.py
2727
VERSION_EXTRACT_PATTERN: >-
28-
__version__\s*=\s*'([^']+)
28+
__version__\s*=\s*"([^"]+)
2929
VERSION_REPLACE_PATTERN: >-
30-
__version__ = '\1'
30+
__version__ = "\1"
3131
TMP_SUFFIX: _updated
3232
CHANGE_LOG_FILE: CHANGELOG.md
3333

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

33
## [Unreleased]
4+
### Added
5+
- Issue [#357](https://github.com/reportportal/agent-python-pytest/issues/357) `pytest-bdd` support, by @HardNorth
6+
### Fixed
7+
- Issue [#389](https://github.com/reportportal/agent-python-pytest/issues/389) `rp_tests_attributes` configuration parameter handling, by @HardNorth
8+
- Issue [#390](https://github.com/reportportal/agent-python-pytest/issues/390) INTERNALERROR due to pytest.exit within fixture, by @HardNorth
49
### Removed
510
- `Python 3.7` support, by @HardNorth
611

tests/helpers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def item_id_gen(**kwargs):
120120
return "{}-{}-{}".format(kwargs["name"], str(round(time.time() * 1000)), random.randint(0, 9999))
121121

122122

123-
def project_settings(**kwargs):
123+
def project_settings(**_):
124124
return DEFAULT_PROJECT_SETTINGS
125125

126126

0 commit comments

Comments
 (0)