Skip to content

Commit c046df6

Browse files
committed
ci: more verbose ffmpeg logs
1 parent 8e10381 commit c046df6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aligner/tests/test_cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ def test_align_something(self):
8787
# in CI. It's not a hard requirement, so just convert to .wav.
8888
result = subprocess.run(["ffmpeg", "-i", m4a, wav], capture_output=True)
8989
if VERBOSE_OVERRIDE:
90-
print(result.stdout)
90+
print("ffmpeg output:", result.stdout, result.stderr)
91+
print("ffmpeg exit code:", result.returncode)
9192
print(tmpdir)
9293
os.system("ls -la " + tmpdir)
9394
textgrid = tmppath / "ej-fra-16000.TextGrid"

0 commit comments

Comments
 (0)