Skip to content

Commit

Permalink
bump version and little fix (via #250)
Browse files Browse the repository at this point in the history
  • Loading branch information
sseliverstov authored Jun 13, 2018
1 parent e24331d commit 1911542
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 19 deletions.
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

0 comments on commit 1911542

Please sign in to comment.