remove sys.path.append calls from tests

This commit is contained in:
samuelkcrow 2022-07-22 11:24:54 -07:00
parent 75efc476f7
commit 480862c765
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ Run a regression test on a control_logic_delay
import unittest
from testutils import header,openram_test
import sys, os
sys.path.append(os.path.join(sys.path[0],".."))
import globals
from globals import OPTS
from sram_factory import factory

2
compiler/tests/16_control_logic_delay_r_test.py Normal file → Executable file
View File

@ -9,7 +9,7 @@
import unittest
from testutils import *
import sys, os
sys.path.append(os.getenv("OPENRAM_HOME"))
import globals
from globals import OPTS
from sram_factory import factory

2
compiler/tests/16_control_logic_delay_rw_test.py Normal file → Executable file
View File

@ -9,7 +9,7 @@
import unittest
from testutils import *
import sys, os
sys.path.append(os.getenv("OPENRAM_HOME"))
import globals
from globals import OPTS
from sram_factory import factory

2
compiler/tests/16_control_logic_delay_w_test.py Normal file → Executable file
View File

@ -9,7 +9,7 @@
import unittest
from testutils import *
import sys, os
sys.path.append(os.getenv("OPENRAM_HOME"))
import globals
from globals import OPTS
from sram_factory import factory