Commit 0c5666b8 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

Merge branch '82-listening-test-generation-scripts' into 'main'

Resolve "Listening test generation scripts"

See merge request !90
parents e613a765 81acf75d
Loading
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@ import multiprocessing as mp
import os
from typing import Iterable

from generate_lt_file import generate_lt_file
from pyaudio3dtools import audiofile
from pyprocessing import processing, processing_configs, utils

@@ -172,14 +171,6 @@ def main(test_cfg):
        for r in results:
            r.get()

    # generate LT file if specified
    if hasattr(test_cfg, "lt_mode"):
        generate_lt_file(
            test_cfg,
            test_cfg.lt_mode,
            os.path.join(test_cfg.output_path, test_cfg.name + ".ltg"),
        )

    # copy over JSON to main output directory
    output_json = os.path.join(test_cfg.output_path, test_cfg.name + ".json")
    with open(output_json, "w") as fp: