Skip to content

Commit c008597

Browse files
authored
Add py37 and drop py34, py35 test env (via #344)
1 parent bc88041 commit c008597

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

allure-behave/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{27,34,35,36}
3+
py{27,36,37}
44
static_check
55

66
[testenv]

allure-pytest/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{27,34,35,36}
3+
py{27,36,37}
44
xdist
55
static_check
66

allure-python-commons-test/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,35,36}
2+
envlist = py{27,36,37}
33

44

55
[testenv]

allure-python-commons/src/utils.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ def getargspec(func):
3030
3131
Like inspect.getargspec but supports functools.partial as well.
3232
"""
33-
# type: (Any) -> Any
33+
# noqa: E731 type: (Any) -> Any
3434
if inspect.ismethod(func):
3535
func = func.__func__
36-
parts = 0, () # type: Tuple[int, Tuple[unicode, ...]]
36+
parts = 0, () # noqa: E731 type: Tuple[int, Tuple[unicode, ...]]
3737
if type(func) is partial:
3838
keywords = func.keywords
3939
if keywords is None:
@@ -108,6 +108,7 @@ def escape_symbol(s):
108108
return s
109109
except UnicodeDecodeError:
110110
return repr(s)[1:-1]
111+
111112
return ''.join(map(escape_symbol, item))
112113

113114

allure-python-commons/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{27,34,35,36}
3+
py{27,36,37}
44
static_check
55

66

allure-robotframework/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{27,34,35,36}
3+
py{27,35,36,37}
44
static_check
55

66

0 commit comments

Comments
 (0)