diff options
Diffstat (limited to 'examples/template')
-rw-r--r-- | examples/template/example.ini | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/template/example.ini b/examples/template/example.ini index 4a4c579..cca2089 100644 --- a/examples/template/example.ini +++ b/examples/template/example.ini @@ -43,11 +43,24 @@ pip_packages = ; key=value [test:name] ; where test:"name" denotes the package name +; (boolean) Do not execute "script" +disable = + +; (boolean) Add to parallel task pool? +; true = yes (default) +; false = no (send to serial task pool) +parallel = + ; (string) Version of tested package version = ; (string) Git repository of tested package repository = +; (list) Commands to execute before "script" +; e.g. pip install -e '.[test]' +script_setup = + ; (list) Commands to execute against tested package +; e.g. pytest script = |