forked from lix-project/lix
jade
4180b84a67
This is capped at 12 because 3.7 seconds of startup is painful enough
and 5.5 seconds with 24 was more annoying.
Change-Id: I327db40fd98deaa5330cd9cf6de99fb07b2c1cb0
30 lines
858 B
Meson
30 lines
858 B
Meson
xdist_opts = [
|
|
# auto number of workers, max 12 jobs
|
|
'-n', 'auto', '--maxprocesses=12',
|
|
# group tests by module or class; ensures that any setup work occurs as little as possible
|
|
'--dist=loadscope',
|
|
]
|
|
|
|
# surprisingly, this actually works even if PATH is set to something before
|
|
# meson gets hold of it. neat!
|
|
functional2_env = environment()
|
|
functional2_env.prepend('PATH', bindir)
|
|
|
|
test(
|
|
'functional2',
|
|
python,
|
|
args : [
|
|
'-m', 'pytest',
|
|
'-v',
|
|
xdist_opts,
|
|
meson.current_source_dir()
|
|
],
|
|
env : functional2_env,
|
|
# FIXME: Although we can trivially use TAP here with pytest-tap, due to a meson bug, it is unusable.
|
|
# (failure output does not get displayed to the console. at all. someone should go fix it):
|
|
# https://github.com/mesonbuild/meson/issues/11185
|
|
# protocol : 'tap',
|
|
suite : 'installcheck',
|
|
timeout : 300,
|
|
)
|