forked from PAWPAW-Mirror/lib_xua
Debug fix
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user