[Python-checkins] bpo-36776: Add @support.skip_unless_symlink to test_lll.py (GH-13058)

Victor Stinner webhook-mailer at python.org
Thu May 2 14:55:04 EDT 2019


https://github.com/python/cpython/commit/6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d
commit: 6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: Victor Stinner <victor.stinner at gmail.com>
date: 2019-05-02T14:54:59-04:00
summary:

bpo-36776: Add @support.skip_unless_symlink to test_lll.py (GH-13058)

files:
M Lib/test/test_tools/test_lll.py

diff --git a/Lib/test/test_tools/test_lll.py b/Lib/test/test_tools/test_lll.py
index a8f6d5f1f43c..f3fbe961eee5 100644
--- a/Lib/test/test_tools/test_lll.py
+++ b/Lib/test/test_tools/test_lll.py
@@ -14,6 +14,7 @@ class lllTests(unittest.TestCase):
     def setUp(self):
         self.lll = import_tool('lll')
 
+    @support.skip_unless_symlink
     def test_lll_multiple_dirs(self):
         with tempfile.TemporaryDirectory() as dir1, \
              tempfile.TemporaryDirectory() as dir2:



More information about the Python-checkins mailing list