Skip to content

Commit dfa3517

Browse files
Merge pull request #1690 from basetenlabs/ndeepak/fix-integration-test
Use non-problematic parameter for truss integration test
2 parents 88f7fa0 + c354a6e commit dfa3517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

truss/tests/test_truss_handle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,12 +370,12 @@ def test_local_no_params_init_custom_model(no_params_init_custom_model):
370370
@pytest.mark.integration
371371
def test_custom_python_requirement(custom_model_truss_dir_with_pre_and_post):
372372
th = TrussHandle(custom_model_truss_dir_with_pre_and_post)
373-
th.add_python_requirement("theano")
373+
th.add_python_requirement("pandas")
374374
th.add_python_requirement("scipy")
375375
tag = "test-custom-python-req-tag:0.0.1"
376376
container = th.docker_run(tag=tag, local_port=None)
377377
try:
378-
verify_python_requirement_installed_on_container(container, "theano")
378+
verify_python_requirement_installed_on_container(container, "pandas")
379379
verify_python_requirement_installed_on_container(container, "scipy")
380380
finally:
381381
Docker.client().kill(container)

0 commit comments

Comments
 (0)