Skip to main content

Command-line executable Python script to re-run the given command every timefiles are modified in the current directory or its subdirectories.

Project description

Usage

rerun [--help|-h] [--verbose|-v] [--ignore|-i=<file>] [--version] <command>

Where:

<command>           Command to execute as a single arg, i.e. put it inside
                    double quotes, or else spaces and other special
                    characters should be escaped.
--help|-h           Show this help message and exit.
--ignore|-i=<file>  File or directory to ignore. Any directories of the
                    given name (and their subdirs) are excluded from the
                    search for changed files. Any modification to files of
                    the given name are ignored. The given value is
                    compared to basenames, so for example, "--ignore=def"
                    will skip the contents of directory "./abc/def/" and
                    will ignore file "./ghi/def". Can be specified multiple
                    times.
--verbose|-v        Display the names of changed files before the command
                    output.
--version           Show version number and exit.

Example

rerun --verbose --ignore=myoutputdir "python -m unittest mymodule"

This will run your tests whenever you save your source code in the current dir or its subdirectories, but it won’t rerun the tests a second time when .pyo files get updated as a result of executing the tests, nor when our program writes to myoutputdir.

This is handy for seeing the new test results in another console window after you hit ‘save’ in your editor, without having to change window focus.

Description

Rerun detects changes to files by polling file modification times once per second. It looks in the current directory and all its subdirectories. On detecting any changes, it clears the terminal and reruns the given command.

It always ignores directories called .svn, .git, .hg, .bzr, build and dist. Additions to this list can be given using –ignore.

It always ignores files ending with .pyc or .pyo. This isn’t currently user-overrideable.

While polling sounds sub-optimal, I’ve yet to encounter a project large enough that rerun’s resource usage was even noticeable. (Plus, see discussion of ‘watchdog’ below.)

Dependencies

Tested on MacOSX, Ubuntu, WindowsXP, Windows 7.

Tested on Python 2.6, 2.7 and 3.4.

Python 2.6 requires argparse to be installed - see requirements_2.6.txt.

No other dependencies.

Hacking

To run tests requires mock, tox. On Python 2.6 also requires unittest2. See requirements_dev.txt and requirements_dev_2.6.txt.

See Makefile for a cheatsheet of commonly used commands I use while hacking on this.

Install

pip install rerun

Known Problems

See issues at https://github.com/tartley/rerun/issues

Alternatives

PyPI package ‘watchdog’ is a cross-platform library for handling file-system events, which includes script ‘watchmedo’, which looks like a more serious and heavy-duty version of ‘Rerun’.

https://pypi-hypernode.com/pypi/watchdog

However, watchmedo doesn’t seem to work for my primary use case, which is re-running tests when files are saved by Vim. This is due to the way Vim writes to temporary files and then moves the temp file to overwrite data atomically. Vim thus guarantees that the user never loses data, but also fails to generate the correct FS events that watchmedo is looking for.

Thanks

The idea came from the Bash command ‘watch’, and inspiration for this implementation came from an old blog post by Jeff Winkler, whos website http://jeffwinkler.net seems to have now died.

Thanks to Bitbucket user sgourley for reporting, chasing up and even offering to fix issue #1, an egregious bug in ignoring directories, before I finally spotted the error. Thanks for the prods!

Changes

1.0.20

(First release since migration to github) Fix to run under Python 3 again, specifically tested on 3.4.

1.0.19

Now expects commands to be a single arg (i.e. spaces etc should be escaped, or the whole command quoted) thus allowing rerun to work on composite commands, such as pipelines.

1.0.18

Now runs on Python 2.6, and is tested on Python 3.3.

Contact

Documentation & download:

http://pypi.python.org/pypi/rerun/

Souce code and issues:

https://github.com/tartley/rerun

Contact the author:

Jonathan Hartley, email: tartley at domain tartley.com, Twitter: @tartley.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

rerun-1.0.20.zip (14.1 kB view details)

Uploaded Source

rerun-1.0.20.tar.gz (7.4 kB view details)

Uploaded Source

File details

Details for the file rerun-1.0.20.zip.

File metadata

  • Download URL: rerun-1.0.20.zip
  • Upload date:
  • Size: 14.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rerun-1.0.20.zip
Algorithm Hash digest
SHA256 d19bc43d2275200906a115d7c837ce9d336c72ee851090f325a8fc4d799d24ea
MD5 937dbfe1d7bee138b729f5e0c02e5c83
BLAKE2b-256 0f377cd99d5a5bf96ce9510c563f0a00ab230b3564d5859142312509a201d9e4

See more details on using hashes here.

File details

Details for the file rerun-1.0.20.tar.gz.

File metadata

  • Download URL: rerun-1.0.20.tar.gz
  • Upload date:
  • Size: 7.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for rerun-1.0.20.tar.gz
Algorithm Hash digest
SHA256 16da4616b081d39b2e24b2b57311746d1a73920a73945a60f6c1b976b197dd3f
MD5 44e66bb9d8da227f0d4e07814db8ff42
BLAKE2b-256 45c581357ff82a12389f841a510978493f5547f417b75947bc8d85c78b926a9a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page