gemini-code-assist[bot] commented on code in PR #20010:
URL: https://github.com/apache/tvm/pull/20010#discussion_r3589285983
##########
tests/python/relax/test_frontend_onnx.py:
##########
@@ -31,10 +31,10 @@
import pytest
pytest.importorskip("onnx")
-pytest.importorskip("onnxruntime")
+#pytest.importorskip("onnxruntime")
import onnx
-import onnxruntime
+#import onnxruntime
Review Comment:

Commenting out `onnxruntime` imports and skips will break the test suite in
environments where `onnxruntime` is installed, and will fail to skip tests when
it is missing. Please revert these commented-out lines.
```suggestion
pytest.importorskip("onnxruntime")
import onnx
import onnxruntime
```
--
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]