diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-05-14 04:12:19 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-05-14 04:12:19 -0400 |
| commit | 8b4eafc3309b48890adf4586dd6ff46d22bca5e2 (patch) | |
| tree | 4f2fc6c27b5efaf8573f9e2876eb4adf50182f5a /scripts | |
| parent | 0b5ece59278f50c471e67615d241de682dcf81dd (diff) | |
add timestamp to unit test example builds
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/test_build_extern.py | 3 |
1 files changed, 2 insertions, 1 deletions
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(): |
