Fix namedtuples and reactivate tests for Python 2

This commit is contained in:
Dave Halter
2018-12-09 12:41:58 +01:00
parent 0c37256050
commit ae1f5fa511
2 changed files with 2 additions and 9 deletions

View File

@@ -7,14 +7,6 @@ from textwrap import dedent
import pytest
# The namedtuple is different for different Python2.7 versions. Some versions
# are missing the attribute `_class_template`.
@pytest.fixture(autouse=True)
def skipping(environment):
if environment.version_info.major < 3:
pytest.skip()
@pytest.mark.parametrize(['letter', 'expected'], [
('n', ['name']),
('s', ['smart']),