From 13e3a048a39b52e696285c456b8978050af18dde Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 13 Jan 2022 18:17:30 +0200 Subject: fix: set TZ in ./check If we care about time zones, we should explicitly test every one we care about. Meanwhile, sometimes tests fail for me unless TZ is UTC. Sponsored-by: author --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index 2582709..00fb41c 100755 --- a/check +++ b/check @@ -16,7 +16,7 @@ class Runcmd: def __init__(self, verbose, progress): self._verbose = verbose self._progress = progress - self._env = {} + self._env = {"TZ": "UTC"} def _write_msg(self, msg): sys.stdout.write(f"{msg}\n") -- cgit v1.2.1