Commit 9279347a authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[tests] fix import paths

parent c5c81eff
Loading
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -43,8 +43,7 @@ TESTV_DIR = SCRIPTS_DIR.joinpath("testv")

BIN_SUFFIX_MERGETARGET = "_ref"

sys.path.append(TESTS_DIR)
from renderer.constants import (
from tests.renderer.constants import (
    CUSTOM_LS_TO_TEST,
    FORMAT_TO_FILE_COMPARETEST,
    FORMAT_TO_FILE_SMOKETEST,
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@

import pytest

from .utils import *
from tests.split_rendering.utils import *

""" Ambisonics """

+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@

import pytest

from .utils import *
from tests.split_rendering.utils import *

""" Ambisonics """

+2 −8
Original line number Diff line number Diff line
@@ -26,19 +26,13 @@
   the United Nations Convention on Contracts on the International Sales of Goods.
"""

import logging
import subprocess as sp
import sys
from pathlib import Path
from tempfile import TemporaryDirectory

import numpy as np
import pytest
from tests.split_rendering.constants import *

from .constants import *

sys.path.append(TESTS_DIR)
from renderer.utils import check_BE, run_cmd, test_info
from tests.renderer.utils import check_BE, run_cmd, test_info

sys.path.append(SCRIPTS_DIR)
from pyaudio3dtools.audiofile import readfile