Skip to content

Commit

Permalink
pythongh-121351: Skip test_not_wiping_history_file() if no readline (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev authored Jul 6, 2024
1 parent 1143894 commit 68e279b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Lib/test/test_pyrepl/test_pyrepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from unittest.mock import patch
from test.support import force_not_colorized
from test.support import SHORT_TIMEOUT
from test.support.import_helper import import_module
from test.support.os_helper import unlink

from .support import (
Expand Down Expand Up @@ -902,6 +903,9 @@ def test_python_basic_repl(self):
self.assertNotIn("Traceback", output)

def test_not_wiping_history_file(self):
# skip, if readline module is not available
import_module('readline')

hfile = tempfile.NamedTemporaryFile(delete=False)
self.addCleanup(unlink, hfile.name)
env = os.environ.copy()
Expand Down

0 comments on commit 68e279b

Please sign in to comment.