Debug fix

This commit is contained in:
Ed
2024-04-19 12:03:26 +01:00
parent ca3a7eb1f9
commit 7fbf400ded

View File

@@ -19,8 +19,9 @@ MAX_CYCLES = 15000000
def test_tx(capfd, config, build_midi):
with open("dir.txt", "wt") as db:
import subprocess, shutil
output = subprocess.run("tree", capture_output=True, text=True)
import subprocess
output = subprocess.run("tree", capture_output=True, text=True, shell=True)
db.write(output.stdout)
# Need tempdir as we use the same config files and this causes issues when using xdist
with tempdir() as tmpdirname: