diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-14 07:53:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-14 07:53:46 -0400 |
commit | c24cc35e6ce34471b1a07e8d2a7798b295bfb8e3 (patch) | |
tree | 3bd34e0be102bb768ddcee68a285bed14baa73bd | |
parent | c5ed56368d13cf4e09be2af28306d1c1465b36ba (diff) | |
download | python-coveragepy-git-c24cc35e6ce34471b1a07e8d2a7798b295bfb8e3.tar.gz |
Maybe 'develop' is better than 'install'?
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | igor.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 57e9b1dd..9e915e4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ python: - pypy install: - - python setup.py clean install + - python setup.py clean develop #- python igor.py zip_mods install_egg remove_extension script: @@ -15,6 +15,10 @@ import sys import zipfile +# Functions named do_* are executable from the command line: do_blah is run +# by "python igor.py blah". + + def do_remove_extension(): """Remove the compiled C extension, no matter what its name.""" |