Commit b613a3d4 authored by Georg Brandl's avatar Georg Brandl

Disable test_13183 temporarily on Windows for 3.3a3 release.

parent ab0ef206
# A test suite for pdb; not very comprehensive at the moment. # A test suite for pdb; not very comprehensive at the moment.
import os
import imp import imp
import pdb import pdb
import sys import sys
...@@ -631,6 +631,7 @@ class PdbTestCase(unittest.TestCase): ...@@ -631,6 +631,7 @@ class PdbTestCase(unittest.TestCase):
self.assertNotIn(b'SyntaxError', stdout, self.assertNotIn(b'SyntaxError', stdout,
"Got a syntax error running test script under PDB") "Got a syntax error running test script under PDB")
@unittest.skipIf(os.name == 'nt', "temporarily disabled on Windows")
def test_issue13183(self): def test_issue13183(self):
script = """ script = """
from bar import bar from bar import bar
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment