Skip to content

Commit 6348730

Browse files
Run tests that require tzdata on stan-aarch64-ubuntu
1 parent 9d5cfa4 commit 6348730

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

master/custom/builders.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,8 @@
211211

212212
# test_xpickle
213213
("aarch64 Ubuntu test_xpickle", "stan-aarch64-ubuntu", UnixXPickleBuild),
214+
# Tests that require the 'tzdata' resource
215+
("aarch64 Ubuntu tzdata", "stan-aarch64-ubuntu", UnixTzdataBuild),
214216

215217
# Linux x86-64 GCC
216218
# Fedora Rawhide is unstable

master/custom/factories.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,12 @@ class UnixBigmemBuild(UnixBuild):
290290
factory_tags = ["bigmem"]
291291

292292

293+
class UnixTzdataBuild(UnixBuild):
294+
buildersuffix = ".tzdata"
295+
testFlags = ["-utzdata", "test_zoneinfo", "test_datetime"]
296+
factory_tags = ["tzdata"]
297+
298+
293299
class UnixXPickleBuild(UnixBuild):
294300
buildersuffix = ".xpickle"
295301
testFlags = ["-uxpickle", "test_xpickle"]

0 commit comments

Comments
 (0)