diff options
| author | Zackery Spytz <zspytz@gmail.com> | 2019-05-02 18:55:00 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2019-05-02 18:54:59 (GMT) |
| commit | 6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d (patch) | |
| tree | 87618b374df28a7cd52ad7c8bd178ccdbe4960fe | |
| parent | 373893ce51b0eaf0dec901e36a3e4217fbed3e32 (diff) | |
| download | cpython-6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d.zip cpython-6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d.tar.gz cpython-6ae2bbbdfcb8969d1d362b17c2fbd5a684fa4f9d.tar.bz2 | |
bpo-36776: Add @support.skip_unless_symlink to test_lll.py (GH-13058)
| -rw-r--r-- | Lib/test/test_tools/test_lll.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tools/test_lll.py b/Lib/test/test_tools/test_lll.py index a8f6d5f..f3fbe961 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: |
