diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-15 09:21:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-05-15 09:21:29 -0400 |
commit | f373746d5f19532c2fc690313fc13be0641eb0f6 (patch) | |
tree | 8573d2005368e3f68f1a8d2392678ea21451e7a1 /igor.py | |
parent | dcfafdac94a31a755b958d6f47ffd09e38ea9833 (diff) | |
download | python-coveragepy-git-f373746d5f19532c2fc690313fc13be0641eb0f6.tar.gz |
Run tests with warnings on, and fix some warnings
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,9 +12,13 @@ import os import platform import socket import sys +import warnings import zipfile +warnings.simplefilter("default") + + # Functions named do_* are executable from the command line: do_blah is run # by "python igor.py blah". |