From a4bf8ec1b2a7678d469b872b69664a8578509600 Mon Sep 17 00:00:00 2001 From: lxning <23464292+lxning@users.noreply.github.com> Date: Thu, 10 Dec 2020 18:48:29 -0800 Subject: [PATCH] add testing date time (#865) --- test/regression_tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/regression_tests.py b/test/regression_tests.py index 88f1e67d85..8d69123370 100644 --- a/test/regression_tests.py +++ b/test/regression_tests.py @@ -12,6 +12,10 @@ from ts_scripts import print_env_info as build_hdr_printer from ts_scripts.utils import check_python_version +import datetime +now = datetime.datetime.now() +print ("Current date and time : " + now.strftime("%Y-%m-%d %H:%M:%S")) + check_python_version() git_branch = Repository('.').head.shorthand