diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-06-03 12:59:44 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-06-03 12:59:44 -0400 |
commit | 04c2a098b6a871201cc9c7b5b2ae6055230823c8 (patch) | |
tree | ea9ee27db70c3b62e4cf53bb1737f0b93353f40e | |
parent | cf109a47bbcb789b8721deecf798cbeaa0b220a1 (diff) | |
download | dm-04c2a098b6a871201cc9c7b5b2ae6055230823c8.tar.gz |
Update README
-rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -22,6 +22,7 @@ Inside of a CI/CD pipeline. Create reproducible pipeline deliveries --config Required: dm yaml configuration -o --output-dir store delivery-related results in dir +-t --test-dir store test-related results in dir -p --install-prefix path to install miniconda --install-variant miniconda Python variant -i --install-version version of miniconda installer @@ -95,6 +96,19 @@ test_conda_requirements: # Note: Packages are not incorporated into the delivery test_pip_requirements: - ci-watson + +# Extend the test runtime environment for a package +test_extended: + drizzlepac: + test_args: "--slow" + runtime: + SPECIAL_VARIABLE: "1" + commands: + - ./run_this.sh + - ./and_that.sh + + another_package: + # ... ``` ## Execution example |