Skip to content

dstanek/tox-run-command

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7075142 · Mar 8, 2016

History

8 Commits
Feb 14, 2016
Mar 8, 2016
Aug 25, 2015
Feb 14, 2016
Aug 26, 2015
Aug 25, 2015
Feb 14, 2016
Feb 14, 2016
Feb 14, 2016
Feb 14, 2016

Repository files navigation

tox-run-command

A tox plugin to run an arbitrary command in a tox managed virtualenv.

Example:
tox -e py27 --run-command "server --port 8080"

In the example tox will will run server --port 8080 inside of the py27 virualenv.

Notes:

  • Any env defined in your tox.ini will work
  • The env will be created if it doesn't exist (just like tox normally does)
  • The commands from your tox.ini will not be run and instead the command you wanted to run is run
  • tox substitutions will also work. (e.g. tox -e py27 --run-command "server --config={homedir}/server.conf")

Why?

Almost all of the projects I work on use tox for test automation. Many of those projects, one such example is Keystone, carry custom Python and/or shell scripts to create virtualenvs to run server processes for manual testing. Other projects advise the developer to create a tox virtualenv by running tox -e py27 --notest and then running the server from within that virtualenv like .tox/py27/bin/server --port 8080.

Both of those options suck. Since I couldn't find a tool that already existed to do this, I created one using the new tox plugin API.

About

tox plugin to run an arbitrary commands in a virtualenv

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages