Skip to content

Commit eb33e80

Browse files
committed
Test file path
1 parent 0183a40 commit eb33e80

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/python/relax/test_frontend_tflite.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ def _get_tflite_model(tflite_model_path, inputs_dict):
5656
def test_squeezenet():
5757
def get_model():
5858
inputs = {"Placeholder": ((1, 224, 224, 3), "float32")}
59-
mod = _get_tflite_model(
60-
os.environ["CI_TEST_INVENTORY"] + "/squeezenet.tflite", inputs_dict=inputs
61-
)
59+
model_path = os.getenv("CI_TEST_INVENTORY", "/local/mnt/workspace/CI/TVM/Inventory")
60+
mod = _get_tflite_model(model_path + "/squeezenet.tflite", inputs_dict=inputs)
6261
return mod
6362

6463
mod = get_model()

0 commit comments

Comments
 (0)