areusch opened a new issue, #11318:
URL: https://github.com/apache/tvm/issues/11318
Over the past year or two I've been encouraging the use of `pytest.main` in
TVM unittests to make it easier to run a single test case without requiring
developers to let pytest go through collection of hundreds of unittests:
```
if __name__ == '__main__':
sys.exit(pytest.main([__file__] + sys.argv[1:]))
```
This is quite an earful and it's hard to get right. It'd be better to reduce
this to:
```
if __name__ == '__main__':
tvm.testing.main()
```
This GH issue tracks that task.
--
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]