File tree Expand file tree Collapse file tree 6 files changed +12
-19
lines changed
allure-python-commons-test Expand file tree Collapse file tree 6 files changed +12
-19
lines changed Original file line number Diff line number Diff line change 2
2
from setuptools import setup
3
3
4
4
PACKAGE = "allure-behave"
5
- VERSION = "2.3.4b1 "
5
+ VERSION = "2.4.0 "
6
6
7
7
classifiers = [
8
- 'Development Status :: 4 - Beta ' ,
8
+ 'Development Status :: 5 - Production/Stable ' ,
9
9
'Intended Audience :: Developers' ,
10
10
'License :: OSI Approved :: Apache Software License' ,
11
11
'Topic :: Software Development :: Quality Assurance' ,
15
15
16
16
install_requires = [
17
17
"behave>=1.2.5" ,
18
- "allure-python-commons==2.3.4b1 "
18
+ "allure-python-commons==2.4.0 "
19
19
]
20
20
21
21
Original file line number Diff line number Diff line change 1
- from __future__ import print_function
2
-
3
1
from behave .model import ScenarioOutline
4
2
from behave .formatter .base import Formatter
5
3
import allure_commons
@@ -11,11 +9,6 @@ class AllureFormatter(Formatter):
11
9
def __init__ (self , stream_opener , config ):
12
10
super (AllureFormatter , self ).__init__ (stream_opener , config )
13
11
14
- self .config = config
15
-
16
- with open ("debug-runner" , "a" ) as debugfile :
17
- print (config .show_skipped , file = debugfile )
18
-
19
12
self .listener = AllureListener (config )
20
13
file_logger = AllureFileLogger (self .stream_opener .name )
21
14
Original file line number Diff line number Diff line change 14
14
pass
15
15
16
16
PACKAGE = "allure-pytest"
17
- VERSION = "2.3.4b1 "
17
+ VERSION = "2.4.0 "
18
18
19
19
classifiers = [
20
- 'Development Status :: 4 - Beta ' ,
20
+ 'Development Status :: 5 - Production/Stable ' ,
21
21
'Framework :: Pytest' ,
22
22
'Intended Audience :: Developers' ,
23
23
'License :: OSI Approved :: Apache Software License' ,
28
28
install_requires = [
29
29
"pytest>=3.3.0" ,
30
30
"six>=1.9.0" ,
31
- "allure-python-commons==2.3.4b1 "
31
+ "allure-python-commons==2.4.0 "
32
32
]
33
33
34
34
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
PACKAGE = "allure-python-commons-test"
4
- VERSION = "2.3.4b1 "
4
+ VERSION = "2.4.0 "
5
5
6
6
install_requires = [
7
7
"pyhamcrest>=1.9.0" ,
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
PACKAGE = "allure-python-commons"
4
- VERSION = "2.3.4b1 "
4
+ VERSION = "2.4.0 "
5
5
6
6
classifiers = [
7
- 'Development Status :: 4 - Beta ' ,
7
+ 'Development Status :: 5 - Production/Stable ' ,
8
8
'Intended Audience :: Developers' ,
9
9
'License :: OSI Approved :: Apache Software License' ,
10
10
'Topic :: Software Development :: Quality Assurance' ,
Original file line number Diff line number Diff line change 3
3
4
4
5
5
PACKAGE = "allure-robotframework"
6
- VERSION = "0.1.3 "
6
+ VERSION = "2.4.0 "
7
7
8
8
classifiers = [
9
- 'Development Status :: 4 - Beta ' ,
9
+ 'Development Status :: 5 - Production/Stable ' ,
10
10
'Framework :: Robot Framework' ,
11
11
'Framework :: Robot Framework :: Tool' ,
12
12
'Intended Audience :: Developers' ,
16
16
]
17
17
18
18
install_requires = [
19
- "allure-python-commons==2.3.4b1 " ,
19
+ "allure-python-commons==2.4.0 " ,
20
20
]
21
21
22
22
You can’t perform that action at this time.
0 commit comments