Skip to content

Commit acb7bda

Browse files
committed
Add GH issue to skipped test messages.
1 parent 705378c commit acb7bda

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pythonFiles/tests/test_normalize_for_interpreter.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TestNormalizationScript(object):
1313

1414

1515
@pytest.mark.skipif(sys.version_info.major == 2,
16-
reason="normalizeForInterpreter not working for 2.7")
16+
reason="normalizeForInterpreter not working for 2.7, see GH #4805")
1717
def test_basicNormalization(self, capsys):
1818
src = 'print("this is a test")'
1919
normalizeForInterpreter.normalize_lines(src)
@@ -22,7 +22,7 @@ def test_basicNormalization(self, capsys):
2222

2323

2424
@pytest.mark.skipif(sys.version_info.major == 2,
25-
reason="normalizeForInterpreter not working for 2.7")
25+
reason="normalizeForInterpreter not working for 2.7, see GH #4805")
2626
def test_moreThanOneLine(self, capsys):
2727
src = textwrap.dedent("""\
2828
# Some rando comment
@@ -37,7 +37,7 @@ def show_something():
3737

3838

3939
@pytest.mark.skipif(sys.version_info.major == 2,
40-
reason="normalizeForInterpreter not working for 2.7")
40+
reason="normalizeForInterpreter not working for 2.7, see GH #4805")
4141
def test_withHangingIndent(self, capsys):
4242
src = textwrap.dedent("""\
4343
x = 22
@@ -55,7 +55,7 @@ def test_withHangingIndent(self, capsys):
5555

5656

5757
@pytest.mark.skipif(sys.version_info.major == 2,
58-
reason="normalizeForInterpreter not working for 2.7")
58+
reason="normalizeForInterpreter not working for 2.7, see GH #4805")
5959
def test_clearOutExtraneousNewlines(self, capsys):
6060
src = textwrap.dedent("""\
6161
value_x = 22
@@ -82,7 +82,7 @@ def test_clearOutExtraneousNewlines(self, capsys):
8282

8383

8484
@pytest.mark.skipif(sys.version_info.major == 2,
85-
reason="normalizeForInterpreter not working for 2.7")
85+
reason="normalizeForInterpreter not working for 2.7, see GH #4805")
8686
def test_clearOutExtraLinesAndWhitespace(self, capsys):
8787
src = textwrap.dedent("""\
8888
if True:

0 commit comments

Comments
 (0)