common/build-style/python3-pep517: use absolute path for check temp dir

some tests change cwd which causes relative tmpdir to point to a non-existent
location
This commit is contained in:
Michal Vasilek 2023-05-07 11:23:17 +02:00
parent 5035a93241
commit c7206b4bdc

View file

@ -20,7 +20,7 @@ do_check() {
make_install_target="dist/${wheelbase//-/_}-${version}-*-*-*.whl"
fi
local testdir="tmp/$(date +%s)"
local testdir="${wrksrc}/tmp/$(date +%s)"
python3 -m installer --destdir "${testdir}" \
${make_install_args} ${make_install_target}