Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions allure-behave/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from setuptools import setup

PACKAGE = "allure-behave"
VERSION = "2.3.4b1"
VERSION = "2.4.0"

classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Quality Assurance',
Expand All @@ -15,7 +15,7 @@

install_requires = [
"behave>=1.2.5",
"allure-python-commons==2.3.4b1"
"allure-python-commons==2.4.0"
]


Expand Down
7 changes: 0 additions & 7 deletions allure-behave/src/formatter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import print_function

from behave.model import ScenarioOutline
from behave.formatter.base import Formatter
import allure_commons
Expand All @@ -11,11 +9,6 @@ class AllureFormatter(Formatter):
def __init__(self, stream_opener, config):
super(AllureFormatter, self).__init__(stream_opener, config)

self.config = config

with open("debug-runner", "a") as debugfile:
print(config.show_skipped, file=debugfile)

self.listener = AllureListener(config)
file_logger = AllureFileLogger(self.stream_opener.name)

Expand Down
6 changes: 3 additions & 3 deletions allure-pytest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
pass

PACKAGE = "allure-pytest"
VERSION = "2.3.4b1"
VERSION = "2.4.0"

classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
Expand All @@ -28,7 +28,7 @@
install_requires = [
"pytest>=3.3.0",
"six>=1.9.0",
"allure-python-commons==2.3.4b1"
"allure-python-commons==2.4.0"
]


Expand Down
2 changes: 1 addition & 1 deletion allure-python-commons-test/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

PACKAGE = "allure-python-commons-test"
VERSION = "2.3.4b1"
VERSION = "2.4.0"

install_requires = [
"pyhamcrest>=1.9.0",
Expand Down
4 changes: 2 additions & 2 deletions allure-python-commons/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup

PACKAGE = "allure-python-commons"
VERSION = "2.3.4b1"
VERSION = "2.4.0"

classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Quality Assurance',
Expand Down
6 changes: 3 additions & 3 deletions allure-robotframework/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@


PACKAGE = "allure-robotframework"
VERSION = "0.1.3"
VERSION = "2.4.0"

classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Framework :: Robot Framework',
'Framework :: Robot Framework :: Tool',
'Intended Audience :: Developers',
Expand All @@ -16,7 +16,7 @@
]

install_requires = [
"allure-python-commons==2.3.4b1",
"allure-python-commons==2.4.0",
]


Expand Down