buildout recipe to create scripts to run testrepository.
Project description
testr recipe
============
This allows you to easily add a testrepository script to your buildout
project. This really only means that the user doesn't have to have
testr on their path, and they can just use ./bin/test or simlar.
This works very similarly to zc.recipe.testrunner, and in fact borrows
most of its code from there.
A sample buildout configuration would be::
[buildout]
develop = .
parts = test
[test]
recipe = testr_recipe
script = test
which will have ./bin/test run using the .testr.conf in your root
dir.
These are the options you can use:
* script: define the name of the script to create, if not passed
then the name of the section will be used.
* working-directory: if somewhere other than the root of the project
should be used.
* environment: the name of a section containing pairs of values to
put in the environment for the test run, e.g.
::
[test]
recipe = testr_recipe
enironment = testenv
[testenv]
foo = bar
zap = zang
* initialization: a string containing python code to put in the test
script before testr is run.
* executable: the python executable to put in the #! of the script.
* defaults: a list of options to prepend sys.argv for testr.
These are specified as Python source for an expression yielding a list,
typically a list literal. One thing you can do with this is::
[buildout]
parts = test testr
[testr]
recipe = testr_recipe
[test]
recipe = testr_recipe
defaults = ["run"]
which will make ./bin/test run the tests, and allow you to use
./bin/testr to access all the features of testr.
Future enhancments:
* Maybe automatically doing "testr init" when setting up the project, so that
./bin/test works straight away.
* Automatically generate a .testr.conf using standard mechanisms.
============
This allows you to easily add a testrepository script to your buildout
project. This really only means that the user doesn't have to have
testr on their path, and they can just use ./bin/test or simlar.
This works very similarly to zc.recipe.testrunner, and in fact borrows
most of its code from there.
A sample buildout configuration would be::
[buildout]
develop = .
parts = test
[test]
recipe = testr_recipe
script = test
which will have ./bin/test run using the .testr.conf in your root
dir.
These are the options you can use:
* script: define the name of the script to create, if not passed
then the name of the section will be used.
* working-directory: if somewhere other than the root of the project
should be used.
* environment: the name of a section containing pairs of values to
put in the environment for the test run, e.g.
::
[test]
recipe = testr_recipe
enironment = testenv
[testenv]
foo = bar
zap = zang
* initialization: a string containing python code to put in the test
script before testr is run.
* executable: the python executable to put in the #! of the script.
* defaults: a list of options to prepend sys.argv for testr.
These are specified as Python source for an expression yielding a list,
typically a list literal. One thing you can do with this is::
[buildout]
parts = test testr
[testr]
recipe = testr_recipe
[test]
recipe = testr_recipe
defaults = ["run"]
which will make ./bin/test run the tests, and allow you to use
./bin/testr to access all the features of testr.
Future enhancments:
* Maybe automatically doing "testr init" when setting up the project, so that
./bin/test works straight away.
* Automatically generate a .testr.conf using standard mechanisms.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
testr_recipe-0.1.tar.gz
(3.6 kB
view details)
Built Distribution
testr_recipe-0.1-py2.6.egg
(5.3 kB
view details)
File details
Details for the file testr_recipe-0.1.tar.gz
.
File metadata
- Download URL: testr_recipe-0.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e44b50d94632cbbf4d7da2bb90804e5458483ab4a56182e83b734fd0dd0c2a13 |
|
MD5 | 1863bc505c084fff73ad8a32433454c3 |
|
BLAKE2b-256 | f914826615b78215dacffc5a90425a2c589e4aeebdc9589ec43896ce4efb17f8 |
File details
Details for the file testr_recipe-0.1-py2.6.egg
.
File metadata
- Download URL: testr_recipe-0.1-py2.6.egg
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da55edb6acafc1e0bfec90bb9ab859945e926be758202ef3ac7149160dc8437b |
|
MD5 | aaccca6eeb35db4664bdbc65cc72e29a |
|
BLAKE2b-256 | 19a8c39ddfebd0a8d7281226576824e1ce72556330a02d5ba3df8ec53220bfbf |