1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 01:48:21 +02:00

Call subprocesses with absolute path

This commit is contained in:
Alexandre Iooss
2020-09-06 21:19:17 +02:00
parent b6901ea1e5
commit 48407cacf8
3 changed files with 3 additions and 3 deletions

View File

@ -690,7 +690,7 @@ class TestWEIRegistration(TestCase):
"""
with open("/dev/null", "wb") as devnull:
return subprocess.call(
["which", "xelatex"],
["/usr/bin/which", "xelatex"],
stdout=devnull,
stderr=devnull,
) == 0