Skip to content

Commit

Permalink
test (ex/llm): remove upgrade flag to prevent new pytorch from being …
Browse files Browse the repository at this point in the history
…installed
  • Loading branch information
nickfraser committed Aug 23, 2024
1 parent a70cfcf commit 174f2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def tests_brevitas_examples_cpu(session, pytorch, jit_status):
def tests_brevitas_examples_llm(session, pytorch, jit_status):
session.env['BREVITAS_JIT'] = '{}'.format(int(jit_status == 'jit_enabled'))
install_pytorch(pytorch, session)
session.install('--upgrade', '-e', '.[test, llm, export]')
session.install('-e', '.[test, llm, export]')
session.run('pytest', '-n', 'logical', '-k', 'llm', 'tests/brevitas_examples')


Expand Down

0 comments on commit 174f2d7

Please sign in to comment.