[glib/ci-report-debian-stable] ci: Keep JUnit report script working on Debian stable



commit db849efc2af4a03fe5605c3a5fc0e6803c7730b8
Author: Emmanuele Bassi <ebassi gnome org>
Date:   Wed May 8 12:40:45 2019 +0100

    ci: Keep JUnit report script working on Debian stable
    
    The current Debian stable CI image ships with Python 3.5, so the Meson
    log to JUnit report script is failing because it's using an API addition
    present in Python 3.6 or later.
    
    Since it's just a cosmetic option for the time stamp, we can get rid of
    it.

 .gitlab-ci/meson-junit-report.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/.gitlab-ci/meson-junit-report.py b/.gitlab-ci/meson-junit-report.py
index 248ef6e2b..09b89a499 100755
--- a/.gitlab-ci/meson-junit-report.py
+++ b/.gitlab-ci/meson-junit-report.py
@@ -41,7 +41,7 @@ outfile = args.output
 testsuites = ET.Element('testsuites')
 testsuites.set('id', '{}/{}'.format(args.job_id, args.branch))
 testsuites.set('package', args.project_name)
-testsuites.set('timestamp', datetime.datetime.utcnow().isoformat(timespec='minutes'))
+testsuites.set('timestamp', datetime.datetime.utcnow().isoformat())
 
 suites = {}
 for line in args.infile:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]