Aaron Lelevier
Results
11
comments of
Aaron Lelevier
The [warnings](https://docs.python.org/3/library/warnings.html) library can suppress all warnings: ```python import warnings with warnings.catch_warnings(): warnings.simplefilter("ignore") # invoke test suite ```