summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2020-09-06 15:12:50 -0400
committerMatthew Peveler <matt.peveler@gmail.com>2020-09-06 15:12:50 -0400
commit2f91cb8fcd8a345913ce341b29d1edbc980da87f (patch)
tree6048374e8076db1155cda7564692a068bf45ce07
parent9f2fe56bb35f30ab3ccd071ae5ff222719433b31 (diff)
downloadasciidoc-py3-update_source.tar.gz
print source file when updating test dataupdate_source
Signed-off-by: Matthew Peveler <matt.peveler@gmail.com>
-rwxr-xr-xtests/testasciidoc.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/testasciidoc.py b/tests/testasciidoc.py
index 282d25d..4882f80 100755
--- a/tests/testasciidoc.py
+++ b/tests/testasciidoc.py
@@ -93,7 +93,8 @@ class AsciiDocTest(object):
return '%s-%s%s' % (
os.path.normpath(os.path.join(self.datadir, self.name)),
backend,
- BACKEND_EXT[backend])
+ BACKEND_EXT[backend]
+ )
def parse(self, lines, confdir, datadir):
"""
@@ -207,9 +208,13 @@ class AsciiDocTest(object):
backends = self.backends
else:
backends = [backend]
+
+ print('SOURCE: asciidoc: %s' % self.source)
for backend in backends:
if force or self.is_missing_or_outdated(backend):
self.update_expected(backend)
+ print()
+
self.clean_artifacts()
def run(self, backend=None):