display error message
This commit is contained in:
parent
db00e384e6
commit
ec3bba0d03
|
@ -15,7 +15,7 @@ test_ok = {f for f in listdir(template_dirs) if not f.startswith('_') and isdir(
|
||||||
test_ok -= excludes
|
test_ok -= excludes
|
||||||
test_ok = list(test_ok)
|
test_ok = list(test_ok)
|
||||||
test_ok.sort()
|
test_ok.sort()
|
||||||
#test_ok = ['20override']
|
#test_ok = ['01base_file_include_content']
|
||||||
|
|
||||||
|
|
||||||
@fixture(scope="module", params=test_ok)
|
@fixture(scope="module", params=test_ok)
|
||||||
|
@ -79,7 +79,7 @@ async def test_dictionary(test_dir):
|
||||||
[],
|
[],
|
||||||
list_results,
|
list_results,
|
||||||
)
|
)
|
||||||
assert list_templates == list_results
|
assert list_templates == list_results, f'error with {test_dir}:'
|
||||||
for result in list_results:
|
for result in list_results:
|
||||||
template_file = join(dest_dir, result)
|
template_file = join(dest_dir, result)
|
||||||
assert islink(template_file) == islink(join(test_dir, 'result', result))
|
assert islink(template_file) == islink(join(test_dir, 'result', result))
|
||||||
|
|
Loading…
Reference in New Issue