aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-10-07 12:46:46 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-10-07 12:46:46 -0400
commitc46d134d51284a6d0451d43e650dc4ab7ab63a79 (patch)
tree8b7458ff613bbbdf40f1b77c7422a7ce3818adbc
parent914b79370cec1e1a33acb21a14701dd70449f0d8 (diff)
downloadstasis-c46d134d51284a6d0451d43e650dc4ab7ab63a79.tar.gz
Update README.md argument listing
* Add arguments column to template function section (although unused)
-rw-r--r--README.md48
1 files changed, 25 insertions, 23 deletions
diff --git a/README.md b/README.md
index 5ebc8a0..f1d198e 100644
--- a/README.md
+++ b/README.md
@@ -147,24 +147,26 @@ stasis mydelivery.ini
## Command Line Options
-| Long Option | Short Option | Purpose |
-|:---------------------|:------------:|:---------------------------------------------------------------|
-| --help | -h | Display usage statement |
-| --version | -V | Display program version |
-| --continue-on-error | -C | Allow tests to fail |
-| --config ARG | -c ARG | Read STASIS configuration file |
-| --cpu-limit ARG | -l ARG | Number of processes to spawn concurrently (default: cpus - 1) |
-| --python ARG | -p ARG | Override version of Python in configuration |
-| --verbose | -v | Increase output verbosity |
-| --unbuffered | -U | Disable line buffering |
-| --update-base | n/a | Update conda installation prior to STATIS environment creation |
-| --parallel-fail-fast | n/a | On test error, terminate all concurrent tasks |
-| --overwrite | n/a | Overwrite an existing release |
-| --no-docker | n/a | Do not build docker images |
-| --no-artifactory | n/a | Do not upload artifacts to Artifactory |
-| --no-testing | n/a | Do not execute test scripts |
-| --no-rewrite | n/a | Do not rewrite paths and URLs in output files |
-| DELIVERY_FILE | n/a | STASIS delivery file |
+| Long Option | Short Option | Purpose |
+|:---------------------------|:------------:|:---------------------------------------------------------------|
+| --help | -h | Display usage statement |
+| --version | -V | Display program version |
+| --continue-on-error | -C | Allow tests to fail |
+| --config ARG | -c ARG | Read STASIS configuration file |
+| --cpu-limit ARG | -l ARG | Number of processes to spawn concurrently (default: cpus - 1) |
+| --pool-status-interval ARG | n/a | Report task status every n seconds (default: 30) |
+| --python ARG | -p ARG | Override version of Python in configuration |
+| --verbose | -v | Increase output verbosity |
+| --unbuffered | -U | Disable line buffering |
+| --update-base | n/a | Update conda installation prior to STATIS environment creation |
+| --fail-fast | n/a | On test error, terminate all tasks |
+| --overwrite | n/a | Overwrite an existing release |
+| --no-docker | n/a | Do not build docker images |
+| --no-artifactory | n/a | Do not upload artifacts to Artifactory |
+| --no-testing | n/a | Do not execute test scripts |
+| --no-parallel | n/a | Do not execute tests in parallel |
+| --no-rewrite | n/a | Do not rewrite paths and URLs in output files |
+| DELIVERY_FILE | n/a | STASIS delivery file |
## Environment variables
@@ -344,11 +346,11 @@ python = {{ env:MY_DYNAMIC_PYTHON_VERSION }}
Template functions can be accessed using the `{{ func:NAME(ARG,...) }}` notation.
-| Name | Purpose |
-|-------------------------------|------------------------------------------------------------------|
-| get_github_release_notes_auto | Generate release notes for all test contexts |
-| basetemp_dir | Generate directory path to test block's temporary data directory |
-| junitxml_file | Generate directory path and file name for test result file |
+| Name | Arguments | Purpose |
+|-------------------------------|-----------|------------------------------------------------------------------|
+| get_github_release_notes_auto | n/a | Generate release notes for all test contexts |
+| basetemp_dir | n/a | Generate directory path to test block's temporary data directory |
+| junitxml_file | n/a | Generate directory path and file name for test result file |
# Mission files