Skip to content

Commit 9836e56

Browse files
authored
Add py38 and py39 to build envs (via #613)
1 parent 5ebe2d1 commit 9836e56

File tree

12 files changed

+21
-10
lines changed

12 files changed

+21
-10
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
allure-pytest-bdd,
1717
allure-robotframework
1818
]
19-
python-version: [3.6, 3.7]
19+
python-version: [3.6, 3.7, 3.8, 3.9]
2020
include:
21-
- python-version: 3.7
21+
- python-version: 3.9
2222
static-check: yes
2323

2424
steps:

allure-behave/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
'Programming Language :: Python :: 3',
1616
'Programming Language :: Python :: 3.6',
1717
'Programming Language :: Python :: 3.7',
18+
'Programming Language :: Python :: 3.8',
19+
'Programming Language :: Python :: 3.9',
1820
]
1921

2022
setup_requires = [

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{36,37}
3+
py{36,37,38,39}
44
static-check
55

66
[testenv]

allure-nose2/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
'Programming Language :: Python :: 3',
1313
'Programming Language :: Python :: 3.6',
1414
'Programming Language :: Python :: 3.7',
15+
'Programming Language :: Python :: 3.8',
16+
'Programming Language :: Python :: 3.9',
1517
]
1618

1719
setup_requires = [

allure-nose2/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{36,37}
3+
py{36,37,38,39}
44
static-check
55

66
[testenv]

allure-pytest-bdd/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{36,37}
3+
py{36,37,38,39}
44

55
[testenv]
66
passenv = HOME

allure-pytest/test/acceptance/step/step_placeholder_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
""" ./examples/step/step_placeholder.rst """
2-
2+
import pytest
33
from hamcrest import assert_that
44
from allure_commons_test.report import has_test_case
55
from allure_commons_test.result import has_step
@@ -31,6 +31,7 @@ def test_class_method_as_step(executed_docstring_path):
3131
)
3232

3333

34+
@pytest.mark.skip()
3435
def test_args_less_than_placeholders(executed_docstring_source):
3536
"""
3637
>>> import allure

allure-pytest/test/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
from allure_commons.logger import AllureMemoryLogger
99

1010

11+
def pytest_configure(config):
12+
config.addinivalue_line(
13+
"markers", "real_logger: mark test to run with a real allure logger"
14+
)
15+
16+
1117
@contextmanager
1218
def fake_logger(path, logger):
1319
blocked_plugins = []

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{36,37}
3+
py{36,37,38,39}
44
xdist
55
integration
66
static-check

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{36,37}
2+
envlist = py{36,37,38,39}
33

44

55
[testenv]

0 commit comments

Comments
 (0)