From 896891ad9e65a68d794d9f7d7588ca825ad025bb Mon Sep 17 00:00:00 2001 From: pettai Date: Sun, 30 Mar 2025 21:33:45 +0200 Subject: [PATCH] Switch TZ to a generic name (#635) Switch TZ to a more generic name that works under minimal chrooted builds. (America/Los_Angeles, Pacific, PST, PST8PDT) This fixes pbuilder builds on Ubuntu Co-authored-by: Kelly Brazil --- runtests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtests.sh b/runtests.sh index 05723cc4..2a97aa55 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,5 +1,5 @@ #!/bin/bash -# system should be in "America/Los_Angeles" timezone for all tests to pass -# ensure no local plugin parsers are installed for all tests to pass +# system should be in "America/Los_Angeles" (PST8PDT) timezone for all tests +# to pass ensure no local plugin parsers are installed for all tests to pass -TZ=America/Los_Angeles python3 -m unittest -v +TZ=PST8PDT python3 -m unittest -v