gemini-code-assist[bot] commented on code in PR #18755: URL: https://github.com/apache/tvm/pull/18755#discussion_r2794430431
########## tests/scripts/task_python_integration.sh: ########## @@ -35,3 +35,9 @@ find . -type f -path "*.pyc" | xargs rm -f # setup tvm-ffi into python folder python3 -m pip install -v --target=python ./3rdparty/tvm-ffi/ + +# Test for MSC +pytest tests/python/contrib/test_msc + +# Test for OpenCLML +pytest tests/python/relax/backend/clml/ Review Comment:  For efficiency, you can combine these two `pytest` invocations into a single command. This avoids the overhead of starting the `pytest` process twice. ```suggestion # Test for MSC and OpenCLML pytest tests/python/contrib/test_msc tests/python/relax/backend/clml/ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
