diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 18:36:30 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-05-17 18:36:30 -0400 |
commit | ca1a24ac46844ef83a7c1491659a1f36c8df37b1 (patch) | |
tree | 8ec4f7348cec7e561b983cb30ee01f8990cc557a /igor.py | |
parent | ccc1b37086e04d65fbac880248fca3f57b42b901 (diff) | |
download | python-coveragepy-git-ca1a24ac46844ef83a7c1491659a1f36c8df37b1.tar.gz |
Use PyContracts so we can declare/enforce parameter and return types.
This commit doesn't add any uses of PyContracts, but gets the machinery in
place.
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -60,6 +60,7 @@ def run_tests(tracer, *nose_args): print(msg) return + os.environ['COVERAGE_TESTING'] = "True" print_banner(label) nose_args = ["nosetests"] + list(nose_args) nose.core.main(argv=nose_args) |