Interface AutoTestJupyterNotebookStepInput

Create a Jupyter Notebook that can be graded later.

interface AutoTestJupyterNotebookStepInput {
    children?: AutoTestTestStepInput[];
    id?: string;
    kernel: "Python 3";
    name?: string;
    python3KernelVersion: "6.29.5";
    runPermission: AutoTestJupyterNotebookRunPermission;
    templateFile?: AutoTestUploadedFileInput;
}

Properties

The children of this wrapper step.

id?: string

The id of this step.

kernel: "Python 3"

The kernel that is used for the notebook.

name?: string

The name of this step.

python3KernelVersion: "6.29.5"

The version of the Python kernel.

Whether to allow the Jupyter Notebook to be run or not.

The Jupyter template to use.