Skip to content

Commit 1911542

Browse files
authored
bump version and little fix (via #250)
1 parent e24331d commit 1911542

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

allure-behave/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
from setuptools import setup
33

44
PACKAGE = "allure-behave"
5-
VERSION = "2.3.4b1"
5+
VERSION = "2.4.0"
66

77
classifiers = [
8-
'Development Status :: 4 - Beta',
8+
'Development Status :: 5 - Production/Stable',
99
'Intended Audience :: Developers',
1010
'License :: OSI Approved :: Apache Software License',
1111
'Topic :: Software Development :: Quality Assurance',
@@ -15,7 +15,7 @@
1515

1616
install_requires = [
1717
"behave>=1.2.5",
18-
"allure-python-commons==2.3.4b1"
18+
"allure-python-commons==2.4.0"
1919
]
2020

2121

allure-behave/src/formatter.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
from behave.model import ScenarioOutline
42
from behave.formatter.base import Formatter
53
import allure_commons
@@ -11,11 +9,6 @@ class AllureFormatter(Formatter):
119
def __init__(self, stream_opener, config):
1210
super(AllureFormatter, self).__init__(stream_opener, config)
1311

14-
self.config = config
15-
16-
with open("debug-runner", "a") as debugfile:
17-
print(config.show_skipped, file=debugfile)
18-
1912
self.listener = AllureListener(config)
2013
file_logger = AllureFileLogger(self.stream_opener.name)
2114

allure-pytest/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
pass
1515

1616
PACKAGE = "allure-pytest"
17-
VERSION = "2.3.4b1"
17+
VERSION = "2.4.0"
1818

1919
classifiers = [
20-
'Development Status :: 4 - Beta',
20+
'Development Status :: 5 - Production/Stable',
2121
'Framework :: Pytest',
2222
'Intended Audience :: Developers',
2323
'License :: OSI Approved :: Apache Software License',
@@ -28,7 +28,7 @@
2828
install_requires = [
2929
"pytest>=3.3.0",
3030
"six>=1.9.0",
31-
"allure-python-commons==2.3.4b1"
31+
"allure-python-commons==2.4.0"
3232
]
3333

3434

allure-python-commons-test/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
PACKAGE = "allure-python-commons-test"
4-
VERSION = "2.3.4b1"
4+
VERSION = "2.4.0"
55

66
install_requires = [
77
"pyhamcrest>=1.9.0",

allure-python-commons/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from setuptools import setup
22

33
PACKAGE = "allure-python-commons"
4-
VERSION = "2.3.4b1"
4+
VERSION = "2.4.0"
55

66
classifiers = [
7-
'Development Status :: 4 - Beta',
7+
'Development Status :: 5 - Production/Stable',
88
'Intended Audience :: Developers',
99
'License :: OSI Approved :: Apache Software License',
1010
'Topic :: Software Development :: Quality Assurance',

allure-robotframework/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44

55
PACKAGE = "allure-robotframework"
6-
VERSION = "0.1.3"
6+
VERSION = "2.4.0"
77

88
classifiers = [
9-
'Development Status :: 4 - Beta',
9+
'Development Status :: 5 - Production/Stable',
1010
'Framework :: Robot Framework',
1111
'Framework :: Robot Framework :: Tool',
1212
'Intended Audience :: Developers',
@@ -16,7 +16,7 @@
1616
]
1717

1818
install_requires = [
19-
"allure-python-commons==2.3.4b1",
19+
"allure-python-commons==2.4.0",
2020
]
2121

2222

0 commit comments

Comments
 (0)