We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c294fa + 8964d1b commit ba4b103Copy full SHA for ba4b103
noxfile.py
@@ -27,6 +27,7 @@ def download_models(session, use_host_env=False):
27
if use_host_env:
28
session.run_always('python', 'hub.py', env={'PYTHONPATH': PYT_PATH})
29
else:
30
+ session.install("-r", os.path.join(TOP_DIR, "py", "requirements.txt"))
31
session.run_always('python', 'hub.py')
32
33
def install_torch_trt(session):
@@ -334,4 +335,4 @@ def download_test_models(session):
334
335
@nox.session(python=SUPPORTED_PYTHON_VERSIONS, reuse_venv=True)
336
def download_test_models_host_deps(session):
337
"""Grab all the models needed for testing using host dependencies"""
- download_models(session, use_host_env=True)
338
+ download_models(session, use_host_env=True)
0 commit comments