cdk-project/lib/images/codebuild-image/python/src/notebooks/cli/run_all_notebooks.py [16:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parser.add_argument("--instance", help="Instance type", type=str, required=False)
    parser.add_argument(
        "--skip-docker",
        default=True,
        help="Skip notebooks that use Docker",
        type=bool,
        required=False,
    )
    parser.add_argument(
        "--skip-filesystem",
        default=True,
        help="Skip notebooks that use FSx and EFS file systems",
        type=bool,
        required=False,
    )

    parser.add_argument(
        "--skip-local",
        default=True,
        help="Skip notebooks that use Local Mode",
        type=bool,
        required=False,
    )
    parsed = parser.parse_args(args)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cdk-project/lib/images/codebuild-image/python/src/notebooks/cli/run_pr_notebooks.py [22:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parser.add_argument("--instance", help="Instance type", type=str, required=False)
    parser.add_argument(
        "--skip-docker",
        default=True,
        help="Skip notebooks that use Docker",
        type=bool,
        required=False,
    )
    parser.add_argument(
        "--skip-filesystem",
        default=True,
        help="Skip notebooks that use FSx and EFS file systems",
        type=bool,
        required=False,
    )

    parser.add_argument(
        "--skip-local",
        default=True,
        help="Skip notebooks that use Local Mode",
        type=bool,
        required=False,
    )
    parsed = parser.parse_args(args)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



