From 8b4eafc3309b48890adf4586dd6ff46d22bca5e2 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Sat, 14 May 2022 04:12:19 -0400 Subject: add timestamp to unit test example builds --- scripts/test_build_extern.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/test_build_extern.py b/scripts/test_build_extern.py index 904dce00..e2c2cd87 100644 --- a/scripts/test_build_extern.py +++ b/scripts/test_build_extern.py @@ -7,6 +7,7 @@ import shutil import subprocess import sys import tempfile +from datetime import datetime import argparse @@ -89,7 +90,7 @@ with tempfile.TemporaryDirectory() as tempdir: with tempfile.TemporaryDirectory() as tempexdir: temp_example_base = Path(tempexdir) / example_base.name - print(f'Copy {example_base} => {temp_example_base}') + print(f'Copy {example_base} => {temp_example_base} at {datetime.now()}') shutil.copytree(example_base, temp_example_base) if (temp_example_base / 'build').exists(): -- cgit v1.3.1