summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2021-09-26 19:49:19 +1000
committerStuart Bishop <stuart@stuartbishop.net>2021-09-26 19:49:19 +1000
commite9d8703d108bd47e7abc3f0c369c09b925a78ebc (patch)
tree2cb9f585d3a847f42f6c7e0829b80e1c01cb3cdb
parent881c6712fcee5c889037cc22415f7bd7f3fa993f (diff)
downloadpytz-git-e9d8703d108bd47e7abc3f0c369c09b925a78ebc.tar.gz
Skip tests for unparseable years
-rw-r--r--gen_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen_tests.py b/gen_tests.py
index 5ba0648..8e801b5 100644
--- a/gen_tests.py
+++ b/gen_tests.py
@@ -32,7 +32,7 @@ def main():
# Skip bogus output on 64bit architectures, per Bug #213816
lines = [
line.strip() for line in zd_out.splitlines()
- if not line.strip().endswith('NULL')]
+ if not (line.strip().endswith('NULL') or '214748' in line)]
for line in lines:
print(line, file=datf)