Move fstring rules inside a 3.6+ check

This commit is contained in:
rocky
2016-10-22 07:37:21 -04:00
parent a6befdee09
commit 9b7d978944
4 changed files with 23 additions and 15 deletions

View File

@@ -142,9 +142,9 @@ def test_uncompyle_fstring(fstring):
@pytest.mark.skipif(PYTHON_VERSION < 3.6, reason='need at least python 3.6')
@pytest.mark.parametrize('fstring', [
#"f'{abc}{abc!s}'",
"f'{abc}{abc!s}'",
"f'{abc}0'",
])
def test_uncompyle_direct(fstring):
"""useful for debugging"""
run_test(fstring)
run_test(fstring)