aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2024-10-04 08:40:39 -0400
committerGitHub <noreply@github.com>2024-10-04 08:40:39 -0400
commitd7e3deba72703ad36c497f5becf6772ca00a0d6d (patch)
treeeff3b2ec3dcc31126041529c8e00a714997f2d7b /examples
parent9691ccf51b3efd8113e9620c4afa8b5382d7f161 (diff)
parentf0ba8cd378a460f927644e41f49be95d0e956f81 (diff)
downloadstasis-d7e3deba72703ad36c497f5becf6772ca00a0d6d.tar.gz
Merge pull request #46 from jhunkeler/split-delivery-code
Add multiprocessing / Split delivery code
Diffstat (limited to 'examples')
-rw-r--r--examples/template/example.ini13
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 =