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
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ pipeline {
stages {
stage("Build") {
steps {
sh 'tox --workdir=/tmp -c allure-python-commons-test/tox.ini'
sh 'tox --workdir=/tmp -c allure-python-commons/tox.ini'
sh 'tox --workdir=/tmp -c allure-pytest/tox.ini'
sh 'tox --workdir=/tmp -c allure-behave/tox.ini'
sh 'tox --workdir=/tmp -c allure-robotframework/tox.ini'
sh 'tox -r --workdir=/tmp -c allure-python-commons-test/tox.ini'
sh 'tox -r --workdir=/tmp -c allure-python-commons/tox.ini'
sh 'tox -r --workdir=/tmp -c allure-pytest/tox.ini'
sh 'tox -r --workdir=/tmp -c allure-behave/tox.ini'
sh 'tox -r --workdir=/tmp -c allure-robotframework/tox.ini'
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions allure-behave/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup

PACKAGE = "allure-behave"
VERSION = "2.5.5"
VERSION = "2.6.0"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -15,7 +15,7 @@

install_requires = [
"behave>=1.2.5",
"allure-python-commons==2.5.5"
"allure-python-commons==2.6.0"
]


Expand Down
4 changes: 4 additions & 0 deletions allure-behave/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ commands =


[testenv:static_check]
basepython = python3.7

skip_install = True

deps = flake8

commands = flake8 src/
Expand Down
4 changes: 2 additions & 2 deletions allure-pytest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
pass

PACKAGE = "allure-pytest"
VERSION = "2.5.5"
VERSION = "2.6.0"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -28,7 +28,7 @@
install_requires = [
"pytest>=3.3.0",
"six>=1.9.0",
"allure-python-commons==2.5.5"
"allure-python-commons==2.6.0"
]


Expand Down
5 changes: 4 additions & 1 deletion allure-pytest/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ commands=


[testenv:static_check]
basepython = python3.7

skip_install = True

deps = flake8
; flake8-import-order
flake8-builtins
Expand All @@ -95,7 +99,6 @@ commands =
flake8 src/ test/



[flake8]
max-line-length = 120
import-order-style = google
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.5.5"
VERSION = "2.6.0"

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

PACKAGE = "allure-python-commons"
VERSION = "2.5.5"
VERSION = "2.6.0"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down
4 changes: 2 additions & 2 deletions allure-robotframework/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


PACKAGE = "allure-robotframework"
VERSION = "2.5.5"
VERSION = "2.6.0"

classifiers = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -16,7 +16,7 @@
]

install_requires = [
"allure-python-commons==2.5.5",
"allure-python-commons==2.6.0",
]


Expand Down