We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3cb3e1 commit c381b9dCopy full SHA for c381b9d
tests/test_paths.py
@@ -345,6 +345,7 @@ def test_copytree():
345
srcdir.mkdir()
346
347
(srcdir / "root.txt").touch()
348
+
349
(srcdir / "a").mkdir()
350
(srcdir / "a" / "a.txt").touch()
351
(srcdir / "b").mkdir()
@@ -368,6 +369,7 @@ def test_copytree():
368
369
assert (srcdir / "c" / "c.txt").is_file()
370
371
destdir = tmpdir_p / "dest"
372
+ destdir.mkdir()
373
374
copytree(srcdir, destdir)
375
0 commit comments