mirror of
https://github.com/copier-org/copier.git
synced 2025-05-29 19:11:16 +00:00
_exclude, _include, _tasks, and _extra_paths can be loaded from the copier.yml (or alternative) file. Fix #36. I’m ashamed I didn’t noticed this bug before. :(
9 lines
224 B
Python
9 lines
224 B
Python
from .. import copier
|
|
|
|
|
|
def test_execute_tasks(dst):
|
|
copier.copy("tests/demo_tasks", dst, quiet=True)
|
|
assert (dst / "hello").exists()
|
|
assert (dst / "hello").is_dir()
|
|
assert (dst / "hello" / "world").exists()
|