Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add test config comment #2389

Merged
merged 1 commit into from
Oct 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions test/sample-test/configs/schema.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@

# This is the schema for sample test config yaml file.
test_name: str()
# Parameters for python samples.
# If 'output' is specified, values will be dynamically injected
arguments: map(required=False)
# Parameters for notebook samples.
# If 'output' is specified, values will be dynamically injected
notebook_params: map(required=False)
# Timeout
test_timeout: int(min=0, required=False)
# For python samples, run_pipeline means submiting the pipeline
# run; For notebook samples, run_pipeline means checking the
# run results assuming the notebook codes already submit the run.
run_pipeline: bool(required=False)